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:
authorDominik Grewe <dominik.grewe@gmail.com>2015-08-27 12:36:48 +0300
committerDominik Grewe <dominik.grewe@gmail.com>2015-08-27 12:36:48 +0300
commit4ca490ba3216c50541a02217023ef1484b439045 (patch)
tree282cb18a70274d375a19187604d986d8d4ddac45
parentafcf93eb06447924e811aea63df42547dc642741 (diff)
parent3ef6f1af4048ec809c2fdbad21b4a04b7400d825 (diff)
Merge pull request #356 from johnny5550822/patch-1
Fix typo in overview.md
-rw-r--r--doc/overview.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/overview.md b/doc/overview.md
index 6aec321..e351eb4 100644
--- a/doc/overview.md
+++ b/doc/overview.md
@@ -105,7 +105,7 @@ An `example` has to be an object which implements the operator
features) or `2` (corresponding label which will be given to the
criterion). The input is usually a Tensor (except if you use special
kind of gradient modules, like [table layers](table.md#nn.TableLayers)). The
-label type depends of the criterion. For example, the
+label type depends on the criterion. For example, the
[MSECriterion](criterion.md#nn.MSECriterion) expect a Tensor, but the
[ClassNLLCriterion](criterion.md#nn.ClassNLLCriterion) except a integer number (the
class).