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:
authorAndrew Tulloch <andrew@tullo.ch>2014-11-21 10:38:45 +0300
committerAndrew Tulloch <andrew@tullo.ch>2014-11-21 10:39:22 +0300
commit6916775db4731b5c40656085471448be476a321d (patch)
treeecbe7b560e213c0b0fc4f1b7911f3a3057151e0d /Sequential.lua
parentb7c39f91f0e47309e16993a9b63a23040786d495 (diff)
Fix various unused variables in nn
Diffstat (limited to 'Sequential.lua')
-rw-r--r--Sequential.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/Sequential.lua b/Sequential.lua
index ec3247b..97554b3 100644
--- a/Sequential.lua
+++ b/Sequential.lua
@@ -1,6 +1,7 @@
local Sequential, parent = torch.class('nn.Sequential', 'nn.Module')
function Sequential:__init()
+ parent.__init(self)
self.modules = {}
end