diff options
author | Determinant <[email protected]> | 2016-03-17 10:51:21 +0800 |
---|---|---|
committer | Determinant <[email protected]> | 2016-03-17 10:51:21 +0800 |
commit | 284d9f3fe3f7017e677fac03b2bc134892875515 (patch) | |
tree | fb3bb0d210d6cd347f60098faeeeb8afc70fd6c5 /nerv/examples | |
parent | 00211587988024e34370e7ec2ee1cb1c8632f116 (diff) | |
parent | f1656ade78ac71d4cd84f1f7a539d1845b137589 (diff) |
Merge branch 'master' of github.com:liuq901/nerv into liuq901-master
Conflicts:
nerv/layer/rnn.lua
Diffstat (limited to 'nerv/examples')
-rw-r--r-- | nerv/examples/network_debug/config.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nerv/examples/network_debug/config.lua b/nerv/examples/network_debug/config.lua index 0429e9a..8e68a32 100644 --- a/nerv/examples/network_debug/config.lua +++ b/nerv/examples/network_debug/config.lua @@ -1,6 +1,6 @@ function get_global_conf() local global_conf = { - lrate = 0.15, + lrate = 1.5, wcost = 1e-5, momentum = 0, clip = 5, @@ -10,8 +10,8 @@ function get_global_conf() nn_act_default = 0, hidden_size = 300, layer_num = 1, - chunk_size = 15, - batch_size = 20, + chunk_size = 5, + batch_size = 200, max_iter = 35, param_random = function() return (math.random() / 5 - 0.1) end, dropout_rate = 0.5, |