├── .travis.yml ├── CAE ├── caeapplygrads.m ├── caebbp.m ├── caebp.m ├── caedown.m ├── caeexamples.m ├── caenumgradcheck.m ├── caesdlm.m ├── caetrain.m ├── caeup.m ├── max3d.m ├── scaesetup.m └── scaetrain.m ├── CNN ├── MaxPooling.cpp ├── MaxPooling.cpp.bak ├── MaxPooling.m ├── MaxPooling.mexw64 ├── MaxPoolingGPU.cpp ├── MaxPoolingGPU.cpp.bak ├── StochasticPooling.cpp ├── StochasticPooling.mexw64 ├── StochaticTest.m ├── cnnapplygrads.m ├── cnnbp - 副本.m ├── cnnbp.m ├── cnnff.m ├── cnnnumgradcheck.m ├── cnnsetup.m ├── cnntest.m ├── cnntrain.m ├── test_example_CNN.m └── test_example_CNN2.m ├── CONTRIBUTING.md ├── DBN ├── dbnsetup.m ├── dbntrain.m ├── dbnunfoldtonn.m ├── rbmdown.m ├── rbmtrain.m └── rbmup.m ├── LICENSE ├── MaxOut ├── nnapplygrads.m ├── nnbp.m ├── nnchecknumgrad.m ├── nneval.m ├── nnff.m ├── nnpredict.m ├── nnsetup - 副本.m ├── nnsetup.m ├── nntest.m ├── nntrain.m ├── nnupdatefigures.m └── test_example_MaxOut.m ├── NN ├── nnapplygrads.m ├── nnbp.m ├── nnchecknumgrad.m ├── nneval.m ├── nnff.m ├── nnpredict.m ├── nnsetup - 副本.m ├── nnsetup.m ├── nntest.m ├── nntrain.m └── nnupdatefigures.m ├── README.md ├── README_header.md ├── REFS.md ├── SAE ├── saesetup.m └── saetrain.m ├── data └── mnist_uint8.mat ├── test_example_NN.m ├── tests.wf ├── runalltests.m ├── test_cnn_gradients_are_numerically_correct.m ├── test_example_CNN.m ├── test_example_DBN.m ├── test_example_NN.m ├── test_example_SAE.m └── test_nn_gradients_are_numerically_correct.m ├── tests ├── RandomDrawing.m ├── runalltests.m ├── test_example_AE.m ├── test_example_CNN.m ├── test_example_DBN.m ├── test_example_NN.m ├── test_example_NN2.m ├── test_example_SAE.m └── test_nn_gradients_are_numerically_correct.m └── util ├── allcomb.m ├── expand.m ├── flicker.m ├── flipall.m ├── fliplrf.m ├── flipudf.m ├── im2patches.m ├── isOctave.m ├── makeLMfilters.m ├── myOctaveVersion.m ├── normalize.m ├── patches2im.m ├── randcorr.m ├── randp.m ├── rnd.m ├── sigm.m ├── sigmrnd.m ├── softmax.m ├── tanh_opt.m ├── visualize.m ├── whiten.m └── zscore.m /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/.travis.yml -------------------------------------------------------------------------------- /CAE/caeapplygrads.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CAE/caeapplygrads.m -------------------------------------------------------------------------------- /CAE/caebbp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CAE/caebbp.m -------------------------------------------------------------------------------- /CAE/caebp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CAE/caebp.m -------------------------------------------------------------------------------- /CAE/caedown.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CAE/caedown.m -------------------------------------------------------------------------------- /CAE/caeexamples.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CAE/caeexamples.m -------------------------------------------------------------------------------- /CAE/caenumgradcheck.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CAE/caenumgradcheck.m -------------------------------------------------------------------------------- /CAE/caesdlm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CAE/caesdlm.m -------------------------------------------------------------------------------- /CAE/caetrain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CAE/caetrain.m -------------------------------------------------------------------------------- /CAE/caeup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CAE/caeup.m -------------------------------------------------------------------------------- /CAE/max3d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CAE/max3d.m -------------------------------------------------------------------------------- /CAE/scaesetup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CAE/scaesetup.m -------------------------------------------------------------------------------- /CAE/scaetrain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CAE/scaetrain.m -------------------------------------------------------------------------------- /CNN/MaxPooling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CNN/MaxPooling.cpp -------------------------------------------------------------------------------- /CNN/MaxPooling.cpp.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CNN/MaxPooling.cpp.bak -------------------------------------------------------------------------------- /CNN/MaxPooling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CNN/MaxPooling.m -------------------------------------------------------------------------------- /CNN/MaxPooling.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CNN/MaxPooling.mexw64 -------------------------------------------------------------------------------- /CNN/MaxPoolingGPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CNN/MaxPoolingGPU.cpp -------------------------------------------------------------------------------- /CNN/MaxPoolingGPU.cpp.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CNN/MaxPoolingGPU.cpp.bak -------------------------------------------------------------------------------- /CNN/StochasticPooling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CNN/StochasticPooling.cpp -------------------------------------------------------------------------------- /CNN/StochasticPooling.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CNN/StochasticPooling.mexw64 -------------------------------------------------------------------------------- /CNN/StochaticTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CNN/StochaticTest.m -------------------------------------------------------------------------------- /CNN/cnnapplygrads.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CNN/cnnapplygrads.m -------------------------------------------------------------------------------- /CNN/cnnbp - 副本.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CNN/cnnbp - 副本.m -------------------------------------------------------------------------------- /CNN/cnnbp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CNN/cnnbp.m -------------------------------------------------------------------------------- /CNN/cnnff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CNN/cnnff.m -------------------------------------------------------------------------------- /CNN/cnnnumgradcheck.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CNN/cnnnumgradcheck.m -------------------------------------------------------------------------------- /CNN/cnnsetup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CNN/cnnsetup.m -------------------------------------------------------------------------------- /CNN/cnntest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CNN/cnntest.m -------------------------------------------------------------------------------- /CNN/cnntrain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CNN/cnntrain.m -------------------------------------------------------------------------------- /CNN/test_example_CNN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CNN/test_example_CNN.m -------------------------------------------------------------------------------- /CNN/test_example_CNN2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CNN/test_example_CNN2.m -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DBN/dbnsetup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/DBN/dbnsetup.m -------------------------------------------------------------------------------- /DBN/dbntrain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/DBN/dbntrain.m -------------------------------------------------------------------------------- /DBN/dbnunfoldtonn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/DBN/dbnunfoldtonn.m -------------------------------------------------------------------------------- /DBN/rbmdown.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/DBN/rbmdown.m -------------------------------------------------------------------------------- /DBN/rbmtrain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/DBN/rbmtrain.m -------------------------------------------------------------------------------- /DBN/rbmup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/DBN/rbmup.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/LICENSE -------------------------------------------------------------------------------- /MaxOut/nnapplygrads.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/MaxOut/nnapplygrads.m -------------------------------------------------------------------------------- /MaxOut/nnbp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/MaxOut/nnbp.m -------------------------------------------------------------------------------- /MaxOut/nnchecknumgrad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/MaxOut/nnchecknumgrad.m -------------------------------------------------------------------------------- /MaxOut/nneval.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/MaxOut/nneval.m -------------------------------------------------------------------------------- /MaxOut/nnff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/MaxOut/nnff.m -------------------------------------------------------------------------------- /MaxOut/nnpredict.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/MaxOut/nnpredict.m -------------------------------------------------------------------------------- /MaxOut/nnsetup - 副本.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/MaxOut/nnsetup - 副本.m -------------------------------------------------------------------------------- /MaxOut/nnsetup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/MaxOut/nnsetup.m -------------------------------------------------------------------------------- /MaxOut/nntest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/MaxOut/nntest.m -------------------------------------------------------------------------------- /MaxOut/nntrain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/MaxOut/nntrain.m -------------------------------------------------------------------------------- /MaxOut/nnupdatefigures.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/MaxOut/nnupdatefigures.m -------------------------------------------------------------------------------- /MaxOut/test_example_MaxOut.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/MaxOut/test_example_MaxOut.m -------------------------------------------------------------------------------- /NN/nnapplygrads.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/NN/nnapplygrads.m -------------------------------------------------------------------------------- /NN/nnbp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/NN/nnbp.m -------------------------------------------------------------------------------- /NN/nnchecknumgrad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/NN/nnchecknumgrad.m -------------------------------------------------------------------------------- /NN/nneval.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/NN/nneval.m -------------------------------------------------------------------------------- /NN/nnff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/NN/nnff.m -------------------------------------------------------------------------------- /NN/nnpredict.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/NN/nnpredict.m -------------------------------------------------------------------------------- /NN/nnsetup - 副本.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/NN/nnsetup - 副本.m -------------------------------------------------------------------------------- /NN/nnsetup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/NN/nnsetup.m -------------------------------------------------------------------------------- /NN/nntest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/NN/nntest.m -------------------------------------------------------------------------------- /NN/nntrain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/NN/nntrain.m -------------------------------------------------------------------------------- /NN/nnupdatefigures.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/NN/nnupdatefigures.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/README.md -------------------------------------------------------------------------------- /README_header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/README_header.md -------------------------------------------------------------------------------- /REFS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/REFS.md -------------------------------------------------------------------------------- /SAE/saesetup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/SAE/saesetup.m -------------------------------------------------------------------------------- /SAE/saetrain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/SAE/saetrain.m -------------------------------------------------------------------------------- /data/mnist_uint8.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/data/mnist_uint8.mat -------------------------------------------------------------------------------- /test_example_NN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/test_example_NN.m -------------------------------------------------------------------------------- /tests.wf/runalltests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/tests.wf/runalltests.m -------------------------------------------------------------------------------- /tests.wf/test_cnn_gradients_are_numerically_correct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/tests.wf/test_cnn_gradients_are_numerically_correct.m -------------------------------------------------------------------------------- /tests.wf/test_example_CNN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/tests.wf/test_example_CNN.m -------------------------------------------------------------------------------- /tests.wf/test_example_DBN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/tests.wf/test_example_DBN.m -------------------------------------------------------------------------------- /tests.wf/test_example_NN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/tests.wf/test_example_NN.m -------------------------------------------------------------------------------- /tests.wf/test_example_SAE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/tests.wf/test_example_SAE.m -------------------------------------------------------------------------------- /tests.wf/test_nn_gradients_are_numerically_correct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/tests.wf/test_nn_gradients_are_numerically_correct.m -------------------------------------------------------------------------------- /tests/RandomDrawing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/tests/RandomDrawing.m -------------------------------------------------------------------------------- /tests/runalltests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/tests/runalltests.m -------------------------------------------------------------------------------- /tests/test_example_AE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/tests/test_example_AE.m -------------------------------------------------------------------------------- /tests/test_example_CNN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/tests/test_example_CNN.m -------------------------------------------------------------------------------- /tests/test_example_DBN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/tests/test_example_DBN.m -------------------------------------------------------------------------------- /tests/test_example_NN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/tests/test_example_NN.m -------------------------------------------------------------------------------- /tests/test_example_NN2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/tests/test_example_NN2.m -------------------------------------------------------------------------------- /tests/test_example_SAE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/tests/test_example_SAE.m -------------------------------------------------------------------------------- /tests/test_nn_gradients_are_numerically_correct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/tests/test_nn_gradients_are_numerically_correct.m -------------------------------------------------------------------------------- /util/allcomb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/util/allcomb.m -------------------------------------------------------------------------------- /util/expand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/util/expand.m -------------------------------------------------------------------------------- /util/flicker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/util/flicker.m -------------------------------------------------------------------------------- /util/flipall.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/util/flipall.m -------------------------------------------------------------------------------- /util/fliplrf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/util/fliplrf.m -------------------------------------------------------------------------------- /util/flipudf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/util/flipudf.m -------------------------------------------------------------------------------- /util/im2patches.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/util/im2patches.m -------------------------------------------------------------------------------- /util/isOctave.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/util/isOctave.m -------------------------------------------------------------------------------- /util/makeLMfilters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/util/makeLMfilters.m -------------------------------------------------------------------------------- /util/myOctaveVersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/util/myOctaveVersion.m -------------------------------------------------------------------------------- /util/normalize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/util/normalize.m -------------------------------------------------------------------------------- /util/patches2im.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/util/patches2im.m -------------------------------------------------------------------------------- /util/randcorr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/util/randcorr.m -------------------------------------------------------------------------------- /util/randp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/util/randp.m -------------------------------------------------------------------------------- /util/rnd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/util/rnd.m -------------------------------------------------------------------------------- /util/sigm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/util/sigm.m -------------------------------------------------------------------------------- /util/sigmrnd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/util/sigmrnd.m -------------------------------------------------------------------------------- /util/softmax.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/util/softmax.m -------------------------------------------------------------------------------- /util/tanh_opt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/util/tanh_opt.m -------------------------------------------------------------------------------- /util/visualize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/util/visualize.m -------------------------------------------------------------------------------- /util/whiten.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/util/whiten.m -------------------------------------------------------------------------------- /util/zscore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happynear/DeepLearnToolbox/HEAD/util/zscore.m --------------------------------------------------------------------------------