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>2015-03-13 01:24:03 +0300
committerSoumith Chintala <soumith@gmail.com>2015-03-13 01:24:03 +0300
commitbcc714d6b40cfe5be2dea4916412446b259f7601 (patch)
treea2838fdbf3681d2d2c9facfeee8ce3cee168f0d4
parent989d5e51ba527f51ef71bd005950a94ce02566aa (diff)
adding link to nando's tutorial
-rw-r--r--README.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/README.md b/README.md
index 4944d3a..e18a2cb 100644
--- a/README.md
+++ b/README.md
@@ -29,6 +29,8 @@ Right now, this repo is not distributed as part of torch-pkg or luarocks system.
```
## Usage
+[Plug: A more explanatory nngraph tutorial by Nando De Freitas of Oxford](https://www.cs.ox.ac.uk/people/nando.defreitas/machinelearning/practicals/practical5.pdf)
+
The aim of this library is to provide users of nn library with tools to easily create complicated architectures. Any given nn module is going to be bundled into a graph node. The __call operator of an instance of nn.Module is used to create architectures as if one is writing function calls.
### One hidden layer network