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:
authorSoumith Chintala <soumith@gmail.com>2016-09-13 17:45:12 +0300
committerGitHub <noreply@github.com>2016-09-13 17:45:12 +0300
commite9fb022accf22feefd2b0b26a1aa72678560aed4 (patch)
tree8c12f25e5b1168e126ce2b15bc45c6aa2f5b0ef1
parent40e42078dd166b349aa19fd28af0b97a57e43ec2 (diff)
parentc4987167474e7a78eeff5f32868392862ccded02 (diff)
Merge pull request #130 from abursuc/patch-1
Typo in example code in README
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 10c8ad0..db98f9b 100644
--- a/README.md
+++ b/README.md
@@ -187,7 +187,7 @@ L2 = nn.Tanh()(nn.Linear(30, 60)(nn.JoinTable(1)({input, L1}))):annotate{
graphAttributes = {color = 'blue', fontcolor = 'green'}
}
L3 = nn.Tanh()(nn.Linear(80, 160)(nn.JoinTable(1)({L1, L2}))):annotate{
- name = 'L3', descrption = 'Level 3 Node',
+ name = 'L3', description = 'Level 3 Node',
graphAttributes = {color = 'green',
style = 'filled', fillcolor = 'yellow'}
}