├── LICENSE ├── README.md ├── cnn.py ├── cnn_exercise.py ├── display_network.py ├── gradient.py ├── linear_decoder_exercise.py ├── load_MNIST.py ├── load_images.py ├── output ├── patches_raw.png ├── patches_zca.png ├── patches_zca_features.png ├── pca.png ├── pca_tilde.png ├── pca_zcawhite.png ├── raw_pca.png ├── weights_sampledata.png ├── weights_selftaughtlearning.png └── weights_sparseAE.png ├── pca_gen.py ├── sample_images.py ├── softmax.py ├── softmax_exercise.py ├── sparse_autoencoder.py ├── stacked_ae_exercise.py ├── stacked_autoencoder.py ├── stl_exercise.py └── train.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/README.md -------------------------------------------------------------------------------- /cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/cnn.py -------------------------------------------------------------------------------- /cnn_exercise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/cnn_exercise.py -------------------------------------------------------------------------------- /display_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/display_network.py -------------------------------------------------------------------------------- /gradient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/gradient.py -------------------------------------------------------------------------------- /linear_decoder_exercise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/linear_decoder_exercise.py -------------------------------------------------------------------------------- /load_MNIST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/load_MNIST.py -------------------------------------------------------------------------------- /load_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/load_images.py -------------------------------------------------------------------------------- /output/patches_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/output/patches_raw.png -------------------------------------------------------------------------------- /output/patches_zca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/output/patches_zca.png -------------------------------------------------------------------------------- /output/patches_zca_features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/output/patches_zca_features.png -------------------------------------------------------------------------------- /output/pca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/output/pca.png -------------------------------------------------------------------------------- /output/pca_tilde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/output/pca_tilde.png -------------------------------------------------------------------------------- /output/pca_zcawhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/output/pca_zcawhite.png -------------------------------------------------------------------------------- /output/raw_pca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/output/raw_pca.png -------------------------------------------------------------------------------- /output/weights_sampledata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/output/weights_sampledata.png -------------------------------------------------------------------------------- /output/weights_selftaughtlearning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/output/weights_selftaughtlearning.png -------------------------------------------------------------------------------- /output/weights_sparseAE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/output/weights_sparseAE.png -------------------------------------------------------------------------------- /pca_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/pca_gen.py -------------------------------------------------------------------------------- /sample_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/sample_images.py -------------------------------------------------------------------------------- /softmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/softmax.py -------------------------------------------------------------------------------- /softmax_exercise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/softmax_exercise.py -------------------------------------------------------------------------------- /sparse_autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/sparse_autoencoder.py -------------------------------------------------------------------------------- /stacked_ae_exercise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/stacked_ae_exercise.py -------------------------------------------------------------------------------- /stacked_autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/stacked_autoencoder.py -------------------------------------------------------------------------------- /stl_exercise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/stl_exercise.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinshah/ufldl_tutorial/HEAD/train.py --------------------------------------------------------------------------------