diff options
author | Qi Liu <[email protected]> | 2016-03-11 21:28:29 +0800 |
---|---|---|
committer | Qi Liu <[email protected]> | 2016-03-11 21:28:29 +0800 |
commit | 442e261a0f2cb8836e2859bd814a267cc8aa5db2 (patch) | |
tree | 112dd3932a8d23fc2e36f67c347f13bb2d19232a /nerv/layer/lstm.lua | |
parent | e2a9af061db485d4388902d738c9d8be3f94ab34 (diff) | |
parent | 14c1997203e04838b1737716dc385e1aa08fe91f (diff) |
update diagonlal lstm
Diffstat (limited to 'nerv/layer/lstm.lua')
-rw-r--r-- | nerv/layer/lstm.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nerv/layer/lstm.lua b/nerv/layer/lstm.lua index 5dbcc20..56f674a 100644 --- a/nerv/layer/lstm.lua +++ b/nerv/layer/lstm.lua @@ -29,9 +29,9 @@ function LSTMLayer:__init(id, global_conf, layer_conf) outputTanh = {dim_in = {dout}, dim_out = {dout}}, }, ['nerv.LSTMGateLayer'] = { - forgetGate = {dim_in = {din, dout, dout}, dim_out = {dout}, pr = pr}, - inputGate = {dim_in = {din, dout, dout}, dim_out = {dout}, pr = pr}, - outputGate = {dim_in = {din, dout, dout}, dim_out = {dout}, pr = pr}, + forgetGate = {dim_in = {din, dout, dout}, dim_out = {dout}, param_type = {'N', 'N', 'D'}, pr = pr}, + inputGate = {dim_in = {din, dout, dout}, dim_out = {dout}, param_type = {'N', 'N', 'D'}, pr = pr}, + outputGate = {dim_in = {din, dout, dout}, dim_out = {dout}, param_type = {'N', 'N', 'D'}, pr = pr}, }, ['nerv.ElemMulLayer'] = { inputGateMul = {dim_in = {dout, dout}, dim_out = {dout}}, |