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/test
diff options
context:
space:
mode:
authorSoumith Chintala <soumith@gmail.com>2014-07-01 20:28:41 +0400
committerSoumith Chintala <soumith@gmail.com>2014-07-01 20:28:41 +0400
commit05db47f654d520c52f24bf3aff898603234782f8 (patch)
treebdd180c6ec95bf41eedfceee424b20139f1ae0f5 /test
parentfceaba81f2925e43a1a36bbc4ead550bc6f38cef (diff)
typo
Diffstat (limited to 'test')
-rw-r--r--test/test.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.lua b/test/test.lua
index 04b1dd8..c88c908 100644
--- a/test/test.lua
+++ b/test/test.lua
@@ -239,7 +239,7 @@ end
function nntest.Linear()
local ini = math.random(5,7)
- local inj_vals = {math.random(5,7), 1} -- Also test the inj = 1 spetial case
+ local inj_vals = {math.random(5,7), 1} -- Also test the inj = 1 spatial case
local input = torch.Tensor(ini):zero()
for ind, inj in pairs(inj_vals) do