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-01-27Revert "changed narrow to standardize negative length and negative offset ↵revert-1113-narrow_editSoumith Chintala
beh…"
2017-01-26Merge pull request #1118 from colesbury/CMakeSoumith Chintala
Install THNN.h and generic/THNN.h
2017-01-26Install THNN.h and generic/THNN.hSam Gross
2017-01-26Merge pull request #1117 from torch/revert-1109-apiSoumith Chintala
Revert "Using accreal instead of real in the API"
2017-01-26Revert "Using accreal instead of real in the API"revert-1109-apiSoumith Chintala
2017-01-24Merge pull request #1109 from pavanky/apiSoumith Chintala
Using accreal instead of real in the API
2017-01-24Merge pull request #1110 from huihuifan/cGLUSoumith Chintala
added c implementation of GatedLinearUnit
2017-01-24Merge pull request #1113 from huihuifan/narrow_editSoumith Chintala
changed narrow to standardize negative length and negative offset beh…
2017-01-24changed narrow to standardize negative length and negative offset behavior,Angela Fan
modified documentation to reflect new behavior
2017-01-20Merge pull request #1111 from gchanan/sizeAverageCESoumith Chintala
Preserve old behavior of setting nll.sizeAverage in CrossEntropyCriterion.
2017-01-20Preserve old behavior of setting nll.sizeAverage in CrossEntropyCriterion.Gregory Chanan
2017-01-20added c implementation of GatedLinearUnitAngela Fan
2017-01-18Using accreal instead of real in the APIPavan Yalamanchili
This is done to be consistent with the changes made to cunn
2017-01-15Merge pull request #1096 from tastyminerals/patch-1Soumith Chintala
corrected a few typos
2017-01-14Merge pull request #1104 from joeyhng/cecSoumith Chintala
Add sizeAverage for CrossEntropyCriterion
2017-01-14Add sizeAverage for CrossEntropyCriterionJoe Ng
2017-01-05corrected a few typostastyminerals
2017-01-05Merge pull request #1092 from guillaumekln/shared-function-dispatchSoumith Chintala
Avoid function serialization when sharing parameters
2017-01-03Fix shared function override for specific modulesGuillaume Klein
2017-01-03Use conditional branching to call the function shared version (#1091)Guillaume Klein
This avoids overwriting the `accUpdateGradParameters` field which exposes the function to serialization and makes the saved object incompatible with other Lua versions.
2017-01-01added CReLU transfer function + tests (#1075)Alykhan Tejani
2017-01-01SelectTable accept string as key (#951)Albert Zhuang
* SelectTable accept any index types (not just integers)
2016-12-31adding TH_LIBRARIES var to THNN cmakeSoumith Chintala
2016-12-31workaround for luarocks 12.04 bugSoumith Chintala
2016-12-31add THNN_SO_VERSIONSoumith Chintala
2016-12-31return self in Container:shareSoumith Chintala
2016-12-30fix local / global var leaksSoumith Chintala
2016-12-30added SpatialAutoCropMSECriterion + testsAlykhan Tejani
added docs
2016-12-30Merge pull request #1087 from torch/DistRatioCritSoumith Chintala
Initial Commit for DistanceRatioCriterion for triplet siamese model training
2016-12-30Initial Commit for DistanceRatioCriterion for triplet siamese model training.Sagar M. Waghmare
2016-12-26Merge pull request #1081 from huihuifan/masterSoumith Chintala
adding gated linear unit and tests to nn
2016-12-26adding gated linear unit and tests to nnAngela Fan
2016-12-25Merge pull request #1083 from szagoruyko/avg-pooling-fixSoumith Chintala
Remove unused buffer in avg pooling
2016-12-25remove unused buffer in avg poolingSergey Zagoruyko
2016-12-24Merge pull request #1080 from torch/unpoolfixSoumith Chintala
fixing OpenMP longjmp bugs in *MaxUnpooling
2016-12-24fixing OpenMP longjmp bugs in *MaxUnpoolingSoumith Chintala
2016-12-21fixing bug in ClassNLLCriterion for single targetssoumith
2016-12-12Merge pull request #1070 from torch/narrownegativeSoumith Chintala
Support negative offset in nn.Narrow
2016-12-12Support negative offset in nn.Narrownarrownegativesoumith
2016-12-08Merge pull request #1063 from willfrey/patch-1Soumith Chintala
Update convolution.md
2016-12-08Update convolution.mdWill Frey
The TemporalSubSampling equation had the wrong indexing. The equation previously read: output[i][t] = bias[i] + weight[i] * sum_{k=1}^kW input[i][dW*(t-1)+k] but should read: output[t][i] = bias[i] + weight[i] * sum_{k=1}^kW input[dW*(t-1)+k][i]
2016-12-07Merge pull request #1058 from gchanan/vShapeChecksSoumith Chintala
Improve Volumetric shape checking.
2016-12-06Improve gradOutput checks for VolumetricReplicationPadding.Gregory Chanan
2016-12-06Improve gradOutput check for VolumetricMaxUnpooling.Gregory Chanan
2016-12-06Add adj parameters to VolumetricFullConvolution documentation.Gregory Chanan
2016-12-06Improve shape checks for VolumetricDilatedConvolution, VolumetricConvolutionMM,Gregory Chanan
VolumetricFullConvolution. Also add some additional checks for SpatialFullConvolution.
2016-12-06Improve shape checks for VolumetricAveragePooling, VolumetricDilatedMaxPooling,Gregory Chanan
VolumetricMaxUnpooling, VolumetricReplicationPadding.
2016-12-06Improve shape checks for VolumetricMaxPooling and VolumetricDilatedMaxPooling.Gregory Chanan
2016-12-06Merge pull request #1061 from ibmua/patch-3Soumith Chintala
Clearer explanation of padding
2016-12-05Clearer explanation of paddingMenshykov