aboutsummaryrefslogtreecommitdiff
path: root/nerv/examples/network_debug/config.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nerv/examples/network_debug/config.lua')
-rw-r--r--nerv/examples/network_debug/config.lua6
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,