diff options
author | Determinant <[email protected]> | 2015-05-28 17:01:10 +0800 |
---|---|---|
committer | Determinant <[email protected]> | 2015-05-28 17:01:10 +0800 |
commit | e934b616496940bfe0924ca1992035d2346baa62 (patch) | |
tree | 6ed5398d9123cc2cbfd2b09ac1aed74db42299c4 /layer/sigmoid.lua | |
parent | e4dedc2992149d245ea65132131253072d3276b8 (diff) |
add softmax + ce layer; test_dnn_layers produces the same result as TNet
Diffstat (limited to 'layer/sigmoid.lua')
-rw-r--r-- | layer/sigmoid.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/layer/sigmoid.lua b/layer/sigmoid.lua index 41a6ef7..ca34419 100644 --- a/layer/sigmoid.lua +++ b/layer/sigmoid.lua @@ -5,6 +5,9 @@ function SigmoidLayer:__init(id, global_conf) self.gconf = global_conf end +function SigmoidLayer:init() +end + function SigmoidLayer:update(bp_err, input, output) -- no params, therefore do nothing end |