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

github.com/torch/nngraph.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkoray kavukcuoglu <koray@kavukcuoglu.org>2013-07-10 18:46:25 +0400
committerkoray kavukcuoglu <koray@kavukcuoglu.org>2013-07-10 18:46:25 +0400
commit42402eb04e47e0bf872726c1188ca0fdd199f224 (patch)
tree4db43b6814a73a0f88da310f259a7f36f2ae9553 /README.md
parent938b09af83f1b6b506888d2374a5e7eae82f9e71 (diff)
correct the updateGradInput logic of module.
We want to make sure that if a node has only a single child, then we pass whwtever the output of updateGradInput is, else, we select an pass to tthe corresponding child.
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 6ad0282..f572553 100644
--- a/README.md
+++ b/README.md
@@ -87,7 +87,7 @@ graph.dot(gmod.fg,'Big MLP')
m:add(nn.SplitTable(1))
m:add(nn.ParallelTable():add(nn.Linear(10,20)):add(nn.Linear(10,30)))
input = nn.Identity()()
- input1,input2 = m(input,2)
+ input1,input2 = m(input):split(2)
m3 = nn.JoinTable(1)({input1,input2})
g = nn.gModule({input},{m3})