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:
authorEugenio Culurciello <euge@purdue.edu>2016-09-02 21:20:49 +0300
committerGitHub <noreply@github.com>2016-09-02 21:20:49 +0300
commit01ff02e4c56828fbce5b5257f860de373e68838f (patch)
treec5ab15d547097b3c70d4f77d06fa8c38be9ab43c
parentf779049a75fccd1ec2b2c71eb645dbb4704e0de0 (diff)
Typo in doc links
-rw-r--r--doc/simple.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/simple.md b/doc/simple.md
index 52e242b..4a30ff5 100644
--- a/doc/simple.md
+++ b/doc/simple.md
@@ -27,8 +27,8 @@ Simple Modules are used for various tasks like adapting Tensor methods and provi
* [Unsqueeze](#nn.Unsqueeze) : unsqueeze the input, i.e., insert singleton dimension;
* [Transpose](#nn.Transpose) : [transposes](https://github.com/torch/torch7/blob/master/doc/tensor.md#tensor-transposedim1-dim2) the input ;
* Modules that adapt mathematical Tensor methods :
- * [AddConstant](https://github.com/torch/nn/blob/master/doc/transfer.md#nn.AddConstant) : adding a constant ;
- * [MulConstant](https://github.com/torch/nn/blob/master/doc/transfer.md#nn.MulConstant) : multiplying a constant ;
+ * [AddConstant](https://github.com/torch/nn/blob/master/doc/transfer.md#addconstant) : adding a constant ;
+ * [MulConstant](https://github.com/torch/nn/blob/master/doc/transfer.md#mulconstant) : multiplying a constant ;
* [Max](#nn.Max) : a [max](https://github.com/torch/torch7/blob/master/doc/maths.md#torch.max) operation over a given dimension ;
* [Min](#nn.Min) : a [min](https://github.com/torch/torch7/blob/master/doc/maths.md#torchminresval-resind-x) operation over a given dimension ;
* [Mean](#nn.Mean) : a [mean](https://github.com/torch/torch7/blob/master/doc/maths.md#res-torchmeanres-x-dim) operation over a given dimension ;