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:
authorkoray kavukcuoglu <koray@kavukcuoglu.org>2012-05-10 22:12:15 +0400
committerkoray kavukcuoglu <koray@kavukcuoglu.org>2012-05-10 22:12:15 +0400
commit0ef82918f098b08e6a06b974c64b043bc461a62f (patch)
tree91449fb365997b71e2d0bb49cbf5da937de37c6f
parent14784d8b68a68a352fd70efa7dd77c039049066a (diff)
correct overriding nn table in the example
-rw-r--r--dok/index.dok2
1 files changed, 1 insertions, 1 deletions
diff --git a/dok/index.dok b/dok/index.dok
index 5a112e5..a687db3 100644
--- a/dok/index.dok
+++ b/dok/index.dok
@@ -61,7 +61,7 @@ Some important remarks:
Building a simple neural network can be achieved by constructing an available layer.
A linear neural network (perceptron!) is built only in one line:
<file lua>
-nn = nn.Linear(10,1) -- perceptron with 10 inputs
+mlp = nn.Linear(10,1) -- perceptron with 10 inputs
</file>
More complex neural networks are easily built using container classes