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:
authorKK <kkurach@users.noreply.github.com>2015-08-22 17:51:41 +0300
committerKK <kkurach@users.noreply.github.com>2015-08-22 17:51:41 +0300
commit9a3180215cf6a2e3df39a9594c61551889705e01 (patch)
tree1dec701cf58504d857c9f18c583f4117e774ec41
parent5659715a11a38582f88bebb7a2736075d876ab20 (diff)
Fix typos in nn.MM example.
-rwxr-xr-xdoc/simple.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/simple.md b/doc/simple.md
index ebb2d2f..a0b7bb2 100755
--- a/doc/simple.md
+++ b/doc/simple.md
@@ -902,7 +902,7 @@ The module also accepts 3D inputs which are interpreted as batches of matrices.
model = nn.MM()
A = torch.randn(b, m, n)
B = torch.randn(b, n, p)
-C = model.forward({A, B}) -- C will be of size `b x m x n`
+C = model:forward({A, B}) -- C will be of size `b x m x p`
```