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>2015-11-24 14:15:11 +0300
committerkoray kavukcuoglu <koray@kavukcuoglu.org>2015-11-24 14:15:11 +0300
commita4cc6c9fbad6fb322fcd69937d67c5183f6fcc37 (patch)
tree5b933e36ef1e3c9de5f133fa590b33101f565fbe
parent2d4351704eee6f97c0652a4680b88cfae64ebb0d (diff)
parent8e6e4966c34493e377ba6bb08dea1c1fef2416a1 (diff)
Merge pull request #94 from LeeTaewoo/patch-1
Minor typo
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index b7668a3..0bd8991 100644
--- a/README.md
+++ b/README.md
@@ -45,7 +45,7 @@ graph.dot(mlp.fg, 'MLP')
Read this diagram from top to bottom, with the first and last nodes being *dummy nodes* that regroup all inputs and outputs of the graph.
The `module` entry describes the function of the node, as applies to `input`, and producing a result of the shape `gradOutput`; `mapindex` contains pointers to the parent nodes.
-To save the *graph* on file, specify the file name, and bot a `dot` and `svg` files will be saved. For example, you can type:
+To save the *graph* on file, specify the file name, and both a `dot` and `svg` files will be saved. For example, you can type:
```lua
graph.dot(mlp.fg, 'MLP', 'myMLP')