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

github.com/clementfarabet/lua---nnx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Leonard <nick@nikopia.org>2014-09-18 23:03:51 +0400
committerNicholas Leonard <nick@nikopia.org>2014-09-18 23:03:51 +0400
commit76abd3b0cf8f4a71b5432736bbf482614d9f78bb (patch)
tree5bb64b724131206e91de7574b0b4f1c54abc8d8c /PullTable.lua
parent41452d951d0e66360299ef42a3f22dc39519b113 (diff)
PushTable/PullTable:forward works (unit tested)
Diffstat (limited to 'PullTable.lua')
-rw-r--r--PullTable.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/PullTable.lua b/PullTable.lua
index 40377e9..4117a9c 100644
--- a/PullTable.lua
+++ b/PullTable.lua
@@ -3,7 +3,6 @@ local PullTable, parent = torch.class("nn.PullTable", "nn.Module")
function PullTable:__init(push, index)
self._push = push
self._index = index
- self.gradInput = push.output.new()
self.output = {}
end