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:
authorSoumith Chintala <soumith@gmail.com>2016-12-08 20:43:10 +0300
committerGitHub <noreply@github.com>2016-12-08 20:43:10 +0300
commit9b2f1ef7c45204f5c278bbdc55e367fcdd29e70e (patch)
treef28422c860c0028c04f9449c30b0cc631f7604e4
parent9bf5d7cafcaa6585fb9f250c5a38eda42862754e (diff)
parent9a7766f4943aad7fc3b3c44f5012ac0d690e97b1 (diff)
Merge pull request #1063 from willfrey/patch-1
Update convolution.md
-rw-r--r--doc/convolution.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/convolution.md b/doc/convolution.md
index 189f409..21cfa57 100644
--- a/doc/convolution.md
+++ b/doc/convolution.md
@@ -190,7 +190,7 @@ size `inputFrameSize`). The corresponding gradients can be found in
The output value of the layer can be precisely described as:
```lua
-output[i][t] = bias[i] + weight[i] * sum_{k=1}^kW input[i][dW*(t-1)+k)]
+output[t][i] = bias[i] + weight[i] * sum_{k=1}^kW input[dW*(t-1)+k][i]
```
<a name="nn.LookupTable"></a>