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:
authorKaiyu Yang <yangky11@outlook.com>2015-12-25 17:31:20 +0300
committerKaiyu Yang <yangky11@outlook.com>2016-01-13 17:21:27 +0300
commit3870691a7caae61cc0946013ea828cdbd7e3cd0b (patch)
tree59b624b8a8a10afa78004dcb44d08da2e87e8ac9 /init.lua
parent23dd17d22c939ab4e17961c3239fce80f0ba90c1 (diff)
add locally-connected layers
fix a typo problem of returning a number instead of a tensor progressing bias added forward done cannot pass gradient check yet pass all checks add tests in test.lua Update convolution.md add document format the code use floor to compute output width instead of ceil modify checkInput and checkOutput make unfolded_copy and unfolded_acc into separate files add test against nn.SpatialConvolution progressing on SpatialConvolutionLocal.c fix a typo problem of returning a number instead of a tensor progressing bias added forward done cannot pass gradient check yet pass all checks add tests in test.lua Update convolution.md add document format the code use floor to compute output width instead of ceil modify checkInput and checkOutput make unfolded_copy and unfolded_acc into separate files add test against nn.SpatialConvolution fix missing parenthesis add locally-connected layers
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/init.lua b/init.lua
index d17445f..77ada9f 100644
--- a/init.lua
+++ b/init.lua
@@ -82,6 +82,7 @@ include('ELU.lua')
include('LookupTable.lua')
include('SpatialConvolution.lua')
+include('SpatialConvolutionLocal.lua')
include('SpatialFullConvolution.lua')
include('SpatialFullConvolutionMap.lua')
include('SpatialConvolutionMM.lua')