diff options
author | Qi Liu <[email protected]> | 2016-02-24 16:24:50 +0800 |
---|---|---|
committer | Qi Liu <[email protected]> | 2016-02-24 16:24:50 +0800 |
commit | 9fb40644f5b7aa141ca23c93e6aa77c05a04c76c (patch) | |
tree | cc142e35fd051f4b8aff48074e7e9dd7d193bcc6 | |
parent | a51498d2761714f4e034f036b84b4b89a88e9539 (diff) |
fix typo
-rw-r--r-- | nerv/layer/lstm.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nerv/layer/lstm.lua b/nerv/layer/lstm.lua index b0cfe08..a1833ef 100644 --- a/nerv/layer/lstm.lua +++ b/nerv/layer/lstm.lua @@ -53,7 +53,7 @@ function LSTMLayer:__init(id, global_conf, layer_conf) param_type = {'N', 'N', 'D'}}, [ap("inputGateL")] = {{}, {dim_in = {din1, din2, din3}, dim_out = {din3}, pr = pr}, - param_tpye = {'N', 'N', 'D'}}, + param_type = {'N', 'N', 'D'}}, [ap("outputGateL")] = {{}, {dim_in = {din1, din2, din3}, dim_out = {din3}, pr = pr}, param_type = {'N', 'N', 'D'}}, |