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>2015-03-04 16:35:10 +0300
committerSoumith Chintala <soumith@gmail.com>2015-03-04 16:35:10 +0300
commit31bf6a663f010e7873bcb7d8603420b82f9beb5d (patch)
treef40f5a2df5c6e97643a17186954f42c54c8f23c2 /test.lua
parent19ae57a0e14e6b580f1555929592c9032c82d3f6 (diff)
Revert "Fixed SpatialAveragePooling - added division by filter size"
Diffstat (limited to 'test.lua')
-rw-r--r--test.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/test.lua b/test.lua
index 63697b9..f1576fc 100644
--- a/test.lua
+++ b/test.lua
@@ -1706,7 +1706,7 @@ function nntest.SpatialAveragePooling()
mytester:asserteq(berr, 0, torch.typename(module) .. ' - i/o backward err ')
local sap = nn.SpatialSubSampling(from, ki, kj, si, sj)
- sap.weight:fill(1.0/ki/kj)
+ sap.weight:fill(1.0)
sap.bias:fill(0.0)
local output = module:forward(input)
@@ -1737,7 +1737,7 @@ function nntest.SpatialAveragePooling()
mytester:asserteq(berr, 0, torch.typename(module) .. ' - i/o backward err (Batch) ')
local sap = nn.SpatialSubSampling(from, ki, kj, si, sj)
- sap.weight:fill(1.0/ki/kj)
+ sap.weight:fill(1.0)
sap.bias:fill(0.0)
local output = module:forward(input)