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-07-17C-impl BCECriterionSergey Zagoruyko
2016-02-09lazy initSergey Zagoruyko
2015-10-05Remove unnecessary mallocs from BCECriterionFrancisco Massa
2015-09-26Add eps correctlyJure Zbontar
2015-09-11BCECriterion rewritesoumith
2014-07-02BCECriterion was incorrect.Clement Farabet
Fixed: * forward/backward: inverted sign to produce neg ll (not pos) * averaging over all elements in target, to properly support batches * added epsilon to protect against 0s (divs and logs)
2014-07-02rewrote BCECriterion for CUDA compatClement Farabet
2014-05-12fixing BCECriterion, adding test, closing https://github.com/torch/nn/pull/10Soumith Chintala
2014-05-11add BCECriteriony0ast