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
path: root/doc
diff options
context:
space:
mode:
authorjeremy <bottler@github.com>2017-02-06 14:08:23 +0300
committerjeremy <bottler@github.com>2017-02-06 14:08:23 +0300
commit907f65f90d986367418f6af7562b2812528f92da (patch)
tree05b73cb50b41ef6904017a4e1586e7ee1e94f5af /doc
parent9717a87989fade1facdc669e4cfaeb534fb5a959 (diff)
review comments from gchanan
Diffstat (limited to 'doc')
-rw-r--r--doc/convolution.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/convolution.md b/doc/convolution.md
index 895714c..57ffd69 100644
--- a/doc/convolution.md
+++ b/doc/convolution.md
@@ -1147,7 +1147,7 @@ image size will be `nOutputPlane x oheight x owidth x otime`
where
```lua
-otime = floor(width * ratioT)
+otime = floor(time * ratioT)
owidth = floor(width * ratioW)
oheight = floor(height * ratioH)
```