Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/nn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Zagoruyko <zagoruyko2@gmail.com>2016-02-04 17:53:04 +0300
committerSergey Zagoruyko <zagoruyko2@gmail.com>2016-02-09 21:08:41 +0300
commitb4ebdf2f95ee9f1429825a0d7b0948721e407d82 (patch)
tree77b6183d0c258d07d5f5e6338c48ccb5fc5a877b /Module.lua
parent4a433463fcd17c4ec3242586da7e9fc859feb3ae (diff)
nn.clearState
Diffstat (limited to 'Module.lua')
-rw-r--r--Module.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/Module.lua b/Module.lua
index a7310d8..2c2b6e1 100644
--- a/Module.lua
+++ b/Module.lua
@@ -364,3 +364,7 @@ function Module:listModules()
end
return modules
end
+
+function Module:clearState()
+ return nn.utils.clear(self, 'output', 'gradInput')
+end