├── LICENSE.md ├── README.md ├── matlab ├── +dagnn │ ├── Axpy.m │ ├── CaffePooling.m │ ├── ChannelShuffle.m │ ├── ClassPrecision.m │ ├── ClassRecall.m │ ├── CosineSim.m │ ├── ErrorStats.m │ ├── EuclideanLoss.m │ ├── Flatten.m │ ├── GlobalPooling.m │ ├── HuberLoss.m │ ├── Interp.m │ ├── L2Norm.m │ ├── Max.m │ ├── Normalize.m │ ├── Permute.m │ ├── Reshape.m │ ├── Slice.m │ ├── SoftMaxTranspose.m │ ├── SoftmaxCELoss.m │ ├── TukeyLoss.m │ └── VerboseLoss.m ├── vl_nnaugdata.m ├── vl_nnaxpy.m ├── vl_nnbrenorm.m ├── vl_nnbrenorm_auto.m ├── vl_nncaffepool.m ├── vl_nnchannelshuffle.m ├── vl_nncosineloss.m ├── vl_nncosinesim.m ├── vl_nncrop_wrapper.m ├── vl_nneuclideanloss.m ├── vl_nnflatten.m ├── vl_nnglobalpool.m ├── vl_nngnorm.m ├── vl_nnhuberloss.m ├── vl_nninterp.m ├── vl_nnl2norm.m ├── vl_nnmasknan.m ├── vl_nnmax.m ├── vl_nnnonorm.m ├── vl_nnreshape.m ├── vl_nnrmse.m ├── vl_nnscale.m ├── vl_nnscalenorm.m ├── vl_nnslice.m ├── vl_nnsoftmaxceloss.m ├── vl_nnsoftmaxt.m ├── vl_nnspatialsoftmax.m ├── vl_nnsum.m ├── vl_nntukeyloss.m ├── wrappers │ └── vl_nnbrenorm_wrapper.m └── xtest │ ├── compare.m │ ├── run_brenorm_tests.m │ ├── run_extra_layers_tests.m │ └── suite │ ├── dev │ └── nnl2norm.m │ ├── nnaxpy.m │ ├── nnbrenorm.m │ ├── nncaffepool.m │ ├── nncosinesim.m │ ├── nncrop_wrapper.m │ ├── nneuclideanloss.m │ ├── nnflatten.m │ ├── nnglobalpool.m │ ├── nngnorm.m │ ├── nnhuberloss.m │ ├── nninterp.m │ ├── nnmasknan.m │ ├── nnmax.m │ ├── nnnonorm.m │ ├── nnreshape.m │ ├── nnscale.m │ ├── nnscalenorm.m │ ├── nnslice.m │ ├── nnsoftmaxceloss.m │ ├── nnsoftmaxt.m │ └── nntukeyloss.m ├── setup_mcnExtraLayers.m ├── test_mcnExtraLayers.m └── utils ├── checkLearningParams.m ├── extras_autonn_custom_fn.m ├── fetchExternalImdb.m └── findBestEpoch.m /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/README.md -------------------------------------------------------------------------------- /matlab/+dagnn/Axpy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/+dagnn/Axpy.m -------------------------------------------------------------------------------- /matlab/+dagnn/CaffePooling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/+dagnn/CaffePooling.m -------------------------------------------------------------------------------- /matlab/+dagnn/ChannelShuffle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/+dagnn/ChannelShuffle.m -------------------------------------------------------------------------------- /matlab/+dagnn/ClassPrecision.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/+dagnn/ClassPrecision.m -------------------------------------------------------------------------------- /matlab/+dagnn/ClassRecall.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/+dagnn/ClassRecall.m -------------------------------------------------------------------------------- /matlab/+dagnn/CosineSim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/+dagnn/CosineSim.m -------------------------------------------------------------------------------- /matlab/+dagnn/ErrorStats.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/+dagnn/ErrorStats.m -------------------------------------------------------------------------------- /matlab/+dagnn/EuclideanLoss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/+dagnn/EuclideanLoss.m -------------------------------------------------------------------------------- /matlab/+dagnn/Flatten.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/+dagnn/Flatten.m -------------------------------------------------------------------------------- /matlab/+dagnn/GlobalPooling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/+dagnn/GlobalPooling.m -------------------------------------------------------------------------------- /matlab/+dagnn/HuberLoss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/+dagnn/HuberLoss.m -------------------------------------------------------------------------------- /matlab/+dagnn/Interp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/+dagnn/Interp.m -------------------------------------------------------------------------------- /matlab/+dagnn/L2Norm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/+dagnn/L2Norm.m -------------------------------------------------------------------------------- /matlab/+dagnn/Max.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/+dagnn/Max.m -------------------------------------------------------------------------------- /matlab/+dagnn/Normalize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/+dagnn/Normalize.m -------------------------------------------------------------------------------- /matlab/+dagnn/Permute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/+dagnn/Permute.m -------------------------------------------------------------------------------- /matlab/+dagnn/Reshape.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/+dagnn/Reshape.m -------------------------------------------------------------------------------- /matlab/+dagnn/Slice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/+dagnn/Slice.m -------------------------------------------------------------------------------- /matlab/+dagnn/SoftMaxTranspose.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/+dagnn/SoftMaxTranspose.m -------------------------------------------------------------------------------- /matlab/+dagnn/SoftmaxCELoss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/+dagnn/SoftmaxCELoss.m -------------------------------------------------------------------------------- /matlab/+dagnn/TukeyLoss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/+dagnn/TukeyLoss.m -------------------------------------------------------------------------------- /matlab/+dagnn/VerboseLoss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/+dagnn/VerboseLoss.m -------------------------------------------------------------------------------- /matlab/vl_nnaugdata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nnaugdata.m -------------------------------------------------------------------------------- /matlab/vl_nnaxpy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nnaxpy.m -------------------------------------------------------------------------------- /matlab/vl_nnbrenorm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nnbrenorm.m -------------------------------------------------------------------------------- /matlab/vl_nnbrenorm_auto.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nnbrenorm_auto.m -------------------------------------------------------------------------------- /matlab/vl_nncaffepool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nncaffepool.m -------------------------------------------------------------------------------- /matlab/vl_nnchannelshuffle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nnchannelshuffle.m -------------------------------------------------------------------------------- /matlab/vl_nncosineloss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nncosineloss.m -------------------------------------------------------------------------------- /matlab/vl_nncosinesim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nncosinesim.m -------------------------------------------------------------------------------- /matlab/vl_nncrop_wrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nncrop_wrapper.m -------------------------------------------------------------------------------- /matlab/vl_nneuclideanloss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nneuclideanloss.m -------------------------------------------------------------------------------- /matlab/vl_nnflatten.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nnflatten.m -------------------------------------------------------------------------------- /matlab/vl_nnglobalpool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nnglobalpool.m -------------------------------------------------------------------------------- /matlab/vl_nngnorm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nngnorm.m -------------------------------------------------------------------------------- /matlab/vl_nnhuberloss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nnhuberloss.m -------------------------------------------------------------------------------- /matlab/vl_nninterp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nninterp.m -------------------------------------------------------------------------------- /matlab/vl_nnl2norm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nnl2norm.m -------------------------------------------------------------------------------- /matlab/vl_nnmasknan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nnmasknan.m -------------------------------------------------------------------------------- /matlab/vl_nnmax.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nnmax.m -------------------------------------------------------------------------------- /matlab/vl_nnnonorm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nnnonorm.m -------------------------------------------------------------------------------- /matlab/vl_nnreshape.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nnreshape.m -------------------------------------------------------------------------------- /matlab/vl_nnrmse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nnrmse.m -------------------------------------------------------------------------------- /matlab/vl_nnscale.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nnscale.m -------------------------------------------------------------------------------- /matlab/vl_nnscalenorm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nnscalenorm.m -------------------------------------------------------------------------------- /matlab/vl_nnslice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nnslice.m -------------------------------------------------------------------------------- /matlab/vl_nnsoftmaxceloss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nnsoftmaxceloss.m -------------------------------------------------------------------------------- /matlab/vl_nnsoftmaxt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nnsoftmaxt.m -------------------------------------------------------------------------------- /matlab/vl_nnspatialsoftmax.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nnspatialsoftmax.m -------------------------------------------------------------------------------- /matlab/vl_nnsum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nnsum.m -------------------------------------------------------------------------------- /matlab/vl_nntukeyloss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/vl_nntukeyloss.m -------------------------------------------------------------------------------- /matlab/wrappers/vl_nnbrenorm_wrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/wrappers/vl_nnbrenorm_wrapper.m -------------------------------------------------------------------------------- /matlab/xtest/compare.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/xtest/compare.m -------------------------------------------------------------------------------- /matlab/xtest/run_brenorm_tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/xtest/run_brenorm_tests.m -------------------------------------------------------------------------------- /matlab/xtest/run_extra_layers_tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/xtest/run_extra_layers_tests.m -------------------------------------------------------------------------------- /matlab/xtest/suite/dev/nnl2norm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/xtest/suite/dev/nnl2norm.m -------------------------------------------------------------------------------- /matlab/xtest/suite/nnaxpy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/xtest/suite/nnaxpy.m -------------------------------------------------------------------------------- /matlab/xtest/suite/nnbrenorm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/xtest/suite/nnbrenorm.m -------------------------------------------------------------------------------- /matlab/xtest/suite/nncaffepool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/xtest/suite/nncaffepool.m -------------------------------------------------------------------------------- /matlab/xtest/suite/nncosinesim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/xtest/suite/nncosinesim.m -------------------------------------------------------------------------------- /matlab/xtest/suite/nncrop_wrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/xtest/suite/nncrop_wrapper.m -------------------------------------------------------------------------------- /matlab/xtest/suite/nneuclideanloss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/xtest/suite/nneuclideanloss.m -------------------------------------------------------------------------------- /matlab/xtest/suite/nnflatten.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/xtest/suite/nnflatten.m -------------------------------------------------------------------------------- /matlab/xtest/suite/nnglobalpool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/xtest/suite/nnglobalpool.m -------------------------------------------------------------------------------- /matlab/xtest/suite/nngnorm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/xtest/suite/nngnorm.m -------------------------------------------------------------------------------- /matlab/xtest/suite/nnhuberloss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/xtest/suite/nnhuberloss.m -------------------------------------------------------------------------------- /matlab/xtest/suite/nninterp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/xtest/suite/nninterp.m -------------------------------------------------------------------------------- /matlab/xtest/suite/nnmasknan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/xtest/suite/nnmasknan.m -------------------------------------------------------------------------------- /matlab/xtest/suite/nnmax.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/xtest/suite/nnmax.m -------------------------------------------------------------------------------- /matlab/xtest/suite/nnnonorm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/xtest/suite/nnnonorm.m -------------------------------------------------------------------------------- /matlab/xtest/suite/nnreshape.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/xtest/suite/nnreshape.m -------------------------------------------------------------------------------- /matlab/xtest/suite/nnscale.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/xtest/suite/nnscale.m -------------------------------------------------------------------------------- /matlab/xtest/suite/nnscalenorm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/xtest/suite/nnscalenorm.m -------------------------------------------------------------------------------- /matlab/xtest/suite/nnslice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/xtest/suite/nnslice.m -------------------------------------------------------------------------------- /matlab/xtest/suite/nnsoftmaxceloss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/xtest/suite/nnsoftmaxceloss.m -------------------------------------------------------------------------------- /matlab/xtest/suite/nnsoftmaxt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/xtest/suite/nnsoftmaxt.m -------------------------------------------------------------------------------- /matlab/xtest/suite/nntukeyloss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/matlab/xtest/suite/nntukeyloss.m -------------------------------------------------------------------------------- /setup_mcnExtraLayers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/setup_mcnExtraLayers.m -------------------------------------------------------------------------------- /test_mcnExtraLayers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/test_mcnExtraLayers.m -------------------------------------------------------------------------------- /utils/checkLearningParams.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/utils/checkLearningParams.m -------------------------------------------------------------------------------- /utils/extras_autonn_custom_fn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/utils/extras_autonn_custom_fn.m -------------------------------------------------------------------------------- /utils/fetchExternalImdb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/utils/fetchExternalImdb.m -------------------------------------------------------------------------------- /utils/findBestEpoch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albanie/mcnExtraLayers/HEAD/utils/findBestEpoch.m --------------------------------------------------------------------------------