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
AgeCommit message (Collapse)Author
2016-04-13Remove unnecessary function override in unpooling modules (#749)Adam Paszke
Doing so breaks deserialization on systems with different architectures. These operations are cheap, so it's not a problem to perform them even when there's no unpooling associated.
2016-03-02Better __tostring__ and cleans formattingAlfredo Canziani
2016-02-18Add THNN conversion for Spatial* modulesFrancisco Massa
Add THNN conversion of SpatialBatchNormalization, SpatialFractionalMaxPooling and SpatialSubSampling Add THNN convertion of SpatialConvolutionLocal, SpatialFullConvolution and SpatialUpSamplingNearest THNN conversion of SpatialMaxUnpooling Remove unfold from generic Add functional conversion of SpatialCrossMapLRN Plus fix in the init.c Fix
2016-02-09nn.clearStateSergey Zagoruyko
2015-12-17Add SpatialMaxUnpoolingclement-masson