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:
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