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-11-15PairwiseDistance: Default using Euclidean distance.Sagar_M_Waghmare
2016-02-09nn.clearStateSergey Zagoruyko
2015-12-15Merge pull request #532 from xwgeng/masterSoumith Chintala
the statements are redundant
2015-12-15the statements are redundantxwgeng
2015-12-11PairwiseDistance: output and gradInput initialized on use and not in ↵Martin Simonovsky
constructor (allows proper sanitization).
2015-04-28Make type() truly recursive.Dominik Grewe
Recursively iterate over the whole table, converting each tensor to the given type. Removes need for many specialized type() functions.
2013-11-18fixed PairwiseDistance type() function bug. Overloaded type now returns self.Jonathan Tompson
2013-11-18Fixed a bug in PairwiseDistance where the gradInput table isn't converted ↵Jonathan Tompson
when Module.type function is called (this bug has always existed and is not due to the recent changes).
2013-10-21going back on Clement's suggestion. It was a good idea, but we're ↵Jonathan Tompson
needlessly loosing performance in the 1D case with the input clone.
2013-10-20fixed a bug in Pairwise distance when the output Lp norm is zero (which ↵Jonathan Tompson
results in a divide by zero issue). Rewrote PairwiseDistance following Clement's suggestion to only have one codepath. Fixed a small bug in extra/test/test.lua where the input to the non-batch fprop test was zero.
2013-10-19it seems like torch.abs() doesn't have a cuda implementation, so the ↵Jonathan Tompson
previous commit would fail when PairwiseDistance():cuda() was called.
2013-10-19Fixed the bprop in PairwiseDistance for pnorms other than one. The ↵Jonathan Tompson
gradInput has always been wrong it seems; the sign of the gradient is correct but the magnitude was wrong. I also added a test in extra/nn/test/test.lua for nn.PairwiseDifference, which tests both the batch and non-batch code paths for a few different p-norms.
2013-10-18Fixed PairwiseDistance for odd Lp normsJonathan Tompson
2013-10-17init self.output with a single element tensor, not an empty tensorkoray kavukcuoglu
2013-09-04Added minibatch support to MarginRankingCriterion and PairwiseDistance.Volodymyr Mnih
2012-01-25initial revamp of torch7 treeRonan Collobert