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
2015-09-04nn.Module preserve type sharing semantics (#187); add nn.Module.applyAdam Lerer
2015-09-04Merge pull request #363 from adamlerer/getParametersSoumith Chintala
getParameters: improve memory use, fix bug with non-compact tensors
2015-09-04getParameters: improve memory efficiency, fix bug with non-compact tensorsAdam Lerer
2015-08-30Merge pull request #359 from fmassa/cosine_embed_batchSoumith Chintala
CosineEmbeddingCriterion supports batch mode
2015-08-30CosineEmbeddingCriterion supports batch modeFrancisco Massa
2015-08-27Merge pull request #356 from johnny5550822/patch-1Dominik Grewe
Fix typo in overview.md
2015-08-27Update overview.mdJohnny
Text edit
2015-08-25fixing doc.Soumith Chintala
2015-08-25Merge pull request #355 from sbodenstein/documentation_fixSoumith Chintala
Fix SpatialBatchNormalization documentation example.
2015-08-25Fixed SpatialBatchNormalization example.Sebastian Bodenstein
2015-08-25Merge pull request #353 from adamlerer/class_nll_criterionSoumith Chintala
Improve ClassNLLCriterion
2015-08-22Merge pull request #354 from kkurach/patch-1Soumith Chintala
Fix typos in nn.MM example.
2015-08-22Fix typos in nn.MM example.KK
2015-08-22Moved ClassNLLCriterion to C. Normalization done by total weight instead of sizeAdam Lerer
2015-08-15Merge pull request #351 from clementfarabet/masterSoumith Chintala
Forcing zeroing when self.output is resized (nn.Linear)
2015-08-15Forcing zeroing when self.output is resized (nn.Linear)Clement Farabet
2015-08-12Merge pull request #348 from nicholas-leonard/readthedocsSoumith Chintala
nn.readthedocs.org
2015-08-11Merge pull request #345 from kosklain/masterSoumith Chintala
Fix contiguous gradoutput bug in nn.Mean
2015-08-11fix listsnicholas-leonard
2015-08-11doc readthedocsnicholas-leonard
2015-08-04Fix contiguous output bug in nn.MeanAdria Puigdomenech
2015-08-04Merge pull request #344 from mys007/paddingfixSoumith Chintala
fixed nn.Padding
2015-08-04fixed broken nn.Padding: input was returned in backpropMartin Simonovsky
2015-08-03Merge pull request #343 from GeorgOstrovski/masterSoumith Chintala
Replace Module.flatten by nn.Module.flatten
2015-08-03Replace Module.flatten by nn.Module.flattenGeorg Ostrovski
2015-07-31Merge pull request #340 from dominikgrewe/singleton_fixSoumith Chintala
Update nntest.addSingletonDimension to test adding final dimension.
2015-07-31Update nntest.addSingletonDimension to test adding final dimension.Dominik Grewe
2015-07-31Merge branch 'master' of https://github.com/torch/nnsoumith
2015-07-31singletondim test fixsoumith
2015-07-31Merge pull request #339 from torch/singletondimSoumith Chintala
fixing corner-case of last dimension in addSingletonDimension
2015-07-31fixing corner-case of last dimension in addSingletonDimensionsoumith
2015-07-31Merge pull request #338 from GeorgOstrovski/masterSoumith Chintala
Removed 3 unused variables
2015-07-31Removed 3 unused variablesGeorg Ostrovski
2015-07-31Merge pull request #337 from torch/seqfixSoumith Chintala
fixing Sequential.remove corner case
2015-07-31fixing Sequential.remove corner casesoumith
2015-07-31fixing non-contiguous bug in SpatialAveragePoolingsoumith
2015-07-30Merge pull request #336 from torch/batchcomparefixSoumith Chintala
fixing nn batchcompare tests. the gradWeights have to be zero-ed first
2015-07-30fixing nn batchcompare tests. the gradWeights have to be zero-ed firstsoumith
2015-07-30Merge pull request #313 from mys007/batchmode_hingeembSoumith Chintala
HingeEmbeddingCriterion: batch mode
2015-07-30rewrote HingeEmbeddingCriterion to support batch modeMartin Simonovsky
+ fixed new data fields to be compatible with deserialization + added size averaging + added test + replaced some ops with inplace equivalent
2015-07-28Merge pull request #334 from torch/selecttablefixSoumith Chintala
Fix SelectTable variable input size bug
2015-07-28Fix SelectTable variable input size bugsoumith
2015-07-28Merge pull request #333 from torch/tablefixgradSoumith Chintala
fixing table modules to return correct number of gradInputs
2015-07-28fixing table modules to return correct number of gradInputssoumith
2015-07-27Merge pull request #329 from jonathantompson/cuda_class_nll_criterion_weightsSoumith Chintala
Added weight support to ClassNLLCriterion cuda
2015-07-27Merge pull request #331 from dominikgrewe/singletonSoumith Chintala
Make addSingletonDimension() more robust and add tests.
2015-07-27Make addSingletonDimension() more robust and add tests.Dominik Grewe
2015-07-26Merge pull request #330 from nicholas-leonard/MultiCriterionSoumith Chintala
[Parallel,Multi]Criterion table inputs
2015-07-25[Parallel,Multi]Criterion table inputsNicholas Leonard
2015-07-24Aded weight support to ClassNLLCriterion cuda.Jonathan Tompson