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-12-19adding BatchCenteringbatchcenteringsoumith
2016-10-17Merge pull request #1005 from alykhantejani/add_pixel_shuffle_layerSoumith Chintala
PixelShuffle module for sub-pixel convolution
2016-10-16Added PixelShuffle layer, tests and docsAlykhan Tejani
2016-10-08added CAdd module, docs and testsAlykhan Tejani
2016-10-07Update LogSoftMax to work in spatial domainFrancisco Massa
2016-08-28Add Volumetric Dilated Max Poolingkmul00
new file: VolumetricDilatedMaxPooling.lua modified: init.lua modified: lib/THNN/generic/THNN.h copied: lib/THNN/generic/VolumetricMaxPooling.c -> lib/THNN/generic/VolumetricDilatedMaxPooling.c modified: lib/THNN/generic/VolumetricMaxPooling.c modified: lib/THNN/init.c modified: test.lua Update docs modified: doc/convolution.md Resolved bug in ceil mode modified: lib/THNN/generic/VolumetricDilatedMaxPooling.c
2016-08-25add CMaxTable class (#885)Jonathan Uesato
* Add CMaxTable and CMinTable
2016-08-25Adding TemporalDynamicKMaxPooling (#867)Multihuntr
* Adding TemporalDynamicKMaxPooling
2016-08-22A container for applying a single module to all table elementsJonas Gehring
This module can be useful when dealing with multi-dimensional mini-batches, for example when training recurrent neural networks (time X batch_size X elements). It simply clones the contained module as necessary and applies each clone to the respective input element.
2016-08-12Add Spatial Dilated Max Poolingkmul00
new file: SpatialDilatedMaxPooling.lua modified: SpatialMaxPooling.lua modified: init.lua modified: lib/THNN/generic/SpatialMaxPooling.c modified: test.lua Updated THNN modified: THNN.h Removed unnecessary function calls modified: SpatialDilatedMaxPooling.lua
2016-08-04volumetric dilated convolutionsoumith
2016-07-31Merge pull request #889 from torch/bottleSoumith Chintala
Implement Bottle container
2016-07-31Implement Bottle containerJoost van Doorn
2016-07-27Adding SpatialUpSamplingBilinearPauline Luc
2016-07-02nn.GPU (#835)Nicholas Léonard
* Added nn.GPU
2016-06-17Added VolumetricReplicationPadding.Jonathan Tompson
2016-06-14Added ReLU6 layer, test and doc.Jonathan Tompson
2016-05-11copy clear state from Identity to {NarrowTable,SelectTable}Wen Li Zhuang
2016-04-28Merge pull request #797 from torch/dilatedSoumith Chintala
adding SpatialDilatedConvolution + tests + doc
2016-04-28adding SpatialDilatedConvolution + tests + docsoumith
2016-04-26Add SpatialClassNLLCriterionAdam Paszke
2016-04-06Add MaskedSelect.lua module to replicate torch.maskedSelect behaviour.rfaulk
2016-03-08Adding nn.MVZeming Lin
2016-03-06Add Unsqueeze ModulePeng Sun
This module, nn.Unsqueeze, is the "inverse" operation of nn.Squeeze. It inserts a singleton dim (i.e., dimension 1) at specified position.
2016-03-01removing useless init.csoumith
2016-03-01adding PartialLinearsoumith
2016-03-01SoftMarginCriterionsoumith
2016-02-29adding nn.Squeezesoumith
2016-02-26Merge pull request #665 from colesbury/bnSoumith Chintala
Add VolumetricBatchNormalization
2016-02-25Add VolumetricBatchNormalizationSam Gross
The BatchNormalization modules now all extend nn.BatchNormalization and use the same THNN/THCUNN implementation.
2016-02-25Adding SpatialReflection and SpatialReplication paddingsoumith
2016-02-20adding ClassSimplexCriterionsoumith
2016-02-20Added MultiLabelSoftMarginCriterionsoumith
2016-02-17added VolumetricDropoutmisko
2016-02-13include -> requireSoumith Chintala
2016-01-26Merge pull request #584 from torch/meansumSoumith Chintala
refactoring Mean into Sum
2016-01-26refactoring Mean into Sumsoumith
2016-01-26adding a Bilinear layersoumith
2016-01-21Merge pull request #569 from kmul00/Vol_unpoolSoumith Chintala
Unpooling with stored Indices for Volumetric Max Pool
2016-01-21Added Max Unpooling for Volumetric Max PoolKoustav
new file: VolumetricMaxUnpooling.lua new file: generic/VolumetricMaxUnpooling.c modified: init.c modified: init.lua modified: test.lua Freeing up indices modified: generic/VolumetricMaxUnpooling.c Update convolution.md Updated doc for padding support in VolumetricConvolution Added doc for VolumetricMaxUnpooling
2016-01-20add nn.ContiguousSergey Zagoruyko
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-12-30Merge pull request #413 from fmassa/cross_lrnSoumith Chintala
Adds SpatialCrossLRN
2015-12-30Add THNN/ffi conversion of AbsAndreas Köpf
2015-12-25cuda consistencySergey Zagoruyko
2015-12-17Add SpatialMaxUnpoolingclement-masson
2015-12-01Added LeakyReLU moduleMichael Rotman
2015-12-01refactoring Deconvolution -> FullConvolutionsoumith
2015-12-01Merge pull request #405 from fmassa/deconvSoumith Chintala
Adds SpatialDeconvolution
2015-12-01Cosine similaritynicholas-leonard