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
2017-07-11parameters() uses torch.type instead of typeNicholas Leonard
2016-08-03memset the result buffers sent into mm (when beta = 0) to zero to fix subtle ↵Soumith Chintala
BLAS behavior based bugs
2016-01-13add locally-connected layersKaiyu Yang
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
2015-07-10Add unit tests for hessian.lua, fix bugs detected by the tests.Andrey Golovizin
* Fix initialization of diagHessianBias for nn.SpatialConvolution. * Fix computing diagHessianBias for nn.SpatialFullConvolution. * Call module:forward() with the proper input before calling accGradParameters(). Without that, accDiagHessianParameters() produces incorrect results for some convolution classes. * Move duplicate code from Module.getParameters() to Module.flatten(), which is now used by both the original Module.getParameters() in Module.lua and the replacement Module.getParameters() in hessian.lua.
2015-05-05Rename unpack to table.unpack for Lua 5.2Sam Gross
Torch7 defines table.unpack to unpack if it is not defined.
2014-11-21Fix various unused variables in nnAndrew Tulloch
2013-01-03New NN classeskoray kavukcuoglu
extra/nn/L1Cost.lua : L1 penalty extra/nn/SpatialFullConvolution.lua : full convolution extra/nn/SpatialFullConvolutionMap.lua : full convolution with connection table extra/nn/TanhShrink.lua : shrinkage with x-tanh(x) extra/nn/WeightedMSECriterion.lua : mean squared error with weighting mask on the target Add new nn classes that are used commonly for unsupervised training of convolutional auto encoders
2012-11-30Updated flatten() in hessian.lua to be synchronized the version in ↵Ivo Danihelka
Module:getParameters().
2012-09-24Removed useless print, times 2.Clement Farabet
2012-09-21Added an extra corner case to getParameters().Clement Farabet
This might finally fix all the possible corners. Fix by Michael Matthieu.
2012-09-14Fixed flatten function when hessian is activated.Clement Farabet
2012-07-17Merge branch 'master' of https://github.com/andresy/torchClement Farabet
2012-07-17Got rid of incorrect hessian implementations.Clement Farabet
2012-07-13Fixed outdated call.Clement Farabet
2012-07-07Commiting incorrect hessian implementation.Clement Farabet
2012-07-07Renaming hessian functionClement Farabet
2012-07-07Got rid of some hessian code that didn't belong here.Clement Farabet
2012-07-06Oups: missing file.Clement Farabet