diff options
author | Determinant <[email protected]> | 2016-03-26 15:23:58 +0800 |
---|---|---|
committer | Determinant <[email protected]> | 2016-03-26 15:23:58 +0800 |
commit | 86dbfcfd490ce3f8fd4591b0950fbea7f1826c70 (patch) | |
tree | b14298e8a020ab110af8cf667e1bb7c01bea693c /nerv/layer/lstm.lua | |
parent | 38a2afc7d9c50859e99e09f4f64af3a4254f6f37 (diff) |
fix "not implemented" and lstm rebinding bugsalpha-3.1
Diffstat (limited to 'nerv/layer/lstm.lua')
-rw-r--r-- | nerv/layer/lstm.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nerv/layer/lstm.lua b/nerv/layer/lstm.lua index 56f674a..3de3453 100644 --- a/nerv/layer/lstm.lua +++ b/nerv/layer/lstm.lua @@ -81,5 +81,6 @@ function LSTMLayer:__init(id, global_conf, layer_conf) self:add_prefix(layers, connections) local layer_repo = nerv.LayerRepo(layers, pr, global_conf) + self.lrepo = layer_repo self:graph_init(layer_repo, connections) end |