Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SpatialConvolutionSparse.lua - github.com/clementfarabet/lua---nnx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 62763c5327d77ecd45359d85ab3be61b6714f129 (plain)
1
2
3
4
5
6
local SpatialConvolutionSparse, parent = torch.class('nn.SpatialConvolutionSparse', 
                                                     'nn.SpatialConvolutionMap')

function SpatialConvolutionSparse:__init(...)
   parent.__init(self,...)
end