gitextract_94todzum/ ├── .gitignore ├── Caffe/ │ ├── 00-classification.ipynb │ ├── 01-learning-lenet.ipynb │ ├── 02-fine-tuning.ipynb │ ├── CMakeLists.txt │ ├── brewing-logreg.ipynb │ ├── cifar10/ │ │ ├── cifar10_full.prototxt │ │ ├── cifar10_full_sigmoid_solver.prototxt │ │ ├── cifar10_full_sigmoid_solver_bn.prototxt │ │ ├── cifar10_full_sigmoid_train_test.prototxt │ │ ├── cifar10_full_sigmoid_train_test_bn.prototxt │ │ ├── cifar10_full_solver.prototxt │ │ ├── cifar10_full_solver_lr1.prototxt │ │ ├── cifar10_full_solver_lr2.prototxt │ │ ├── cifar10_full_train_test.prototxt │ │ ├── cifar10_quick.prototxt │ │ ├── cifar10_quick_solver.prototxt │ │ ├── cifar10_quick_solver_lr1.prototxt │ │ ├── cifar10_quick_train_test.prototxt │ │ ├── convert_cifar_data.cpp │ │ ├── create_cifar10.sh │ │ ├── readme.md │ │ ├── train_full.sh │ │ ├── train_full_sigmoid.sh │ │ ├── train_full_sigmoid_bn.sh │ │ └── train_quick.sh │ ├── cpp_classification/ │ │ ├── classification.cpp │ │ └── readme.md │ ├── detection.ipynb │ ├── feature_extraction/ │ │ ├── imagenet_val.prototxt │ │ └── readme.md │ ├── finetune_flickr_style/ │ │ ├── assemble_data.py │ │ ├── readme.md │ │ └── style_names.txt │ ├── finetune_pascal_detection/ │ │ ├── pascal_finetune_solver.prototxt │ │ └── pascal_finetune_trainval_test.prototxt │ ├── hdf5_classification/ │ │ ├── nonlinear_auto_test.prototxt │ │ ├── nonlinear_auto_train.prototxt │ │ ├── nonlinear_train_val.prototxt │ │ └── train_val.prototxt │ ├── imagenet/ │ │ ├── create_imagenet.sh │ │ ├── make_imagenet_mean.sh │ │ ├── readme.md │ │ ├── resume_training.sh │ │ └── train_caffenet.sh │ ├── mnist/ │ │ ├── convert_mnist_data.cpp │ │ ├── create_mnist.sh │ │ ├── lenet.prototxt │ │ ├── lenet_adadelta_solver.prototxt │ │ ├── lenet_auto_solver.prototxt │ │ ├── lenet_consolidated_solver.prototxt │ │ ├── lenet_multistep_solver.prototxt │ │ ├── lenet_solver.prototxt │ │ ├── lenet_solver_adam.prototxt │ │ ├── lenet_solver_rmsprop.prototxt │ │ ├── lenet_train_test.prototxt │ │ ├── mnist_autoencoder.prototxt │ │ ├── mnist_autoencoder_solver.prototxt │ │ ├── mnist_autoencoder_solver_adadelta.prototxt │ │ ├── mnist_autoencoder_solver_adagrad.prototxt │ │ ├── mnist_autoencoder_solver_nesterov.prototxt │ │ ├── readme.md │ │ ├── train_lenet.sh │ │ ├── train_lenet_adam.sh │ │ ├── train_lenet_consolidated.sh │ │ ├── train_lenet_docker.sh │ │ ├── train_lenet_rmsprop.sh │ │ ├── train_mnist_autoencoder.sh │ │ ├── train_mnist_autoencoder_adadelta.sh │ │ ├── train_mnist_autoencoder_adagrad.sh │ │ └── train_mnist_autoencoder_nesterov.sh │ ├── net_surgery/ │ │ ├── bvlc_caffenet_full_conv.prototxt │ │ └── conv.prototxt │ ├── net_surgery.ipynb │ ├── pascal-multilabel-with-datalayer.ipynb │ ├── pycaffe/ │ │ ├── caffenet.py │ │ ├── layers/ │ │ │ ├── pascal_multilabel_datalayers.py │ │ │ └── pyloss.py │ │ ├── linreg.prototxt │ │ └── tools.py │ ├── siamese/ │ │ ├── convert_mnist_siamese_data.cpp │ │ ├── create_mnist_siamese.sh │ │ ├── mnist_siamese.ipynb │ │ ├── mnist_siamese.prototxt │ │ ├── mnist_siamese_solver.prototxt │ │ ├── mnist_siamese_train_test.prototxt │ │ ├── readme.md │ │ └── train_mnist_siamese.sh │ └── web_demo/ │ ├── app.py │ ├── exifutil.py │ ├── readme.md │ ├── requirements.txt │ └── templates/ │ └── index.html ├── DLbook/ │ └── DeepLearningPapers.md ├── Keras/ │ ├── README.md │ ├── addition_rnn.py │ ├── antirectifier.py │ ├── babi_memnn.py │ ├── babi_rnn.py │ ├── cifar10_cnn.py │ ├── conv_filter_visualization.py │ ├── conv_lstm.py │ ├── deep_dream.py │ ├── image_ocr.py │ ├── imdb_bidirectional_lstm.py │ ├── imdb_cnn.py │ ├── imdb_cnn_lstm.py │ ├── imdb_fasttext.py │ ├── imdb_lstm.py │ ├── lstm_benchmark.py │ ├── lstm_text_generation.py │ ├── mnist_acgan.py │ ├── mnist_cnn.py │ ├── mnist_hierarchical_rnn.py │ ├── mnist_irnn.py │ ├── mnist_mlp.py │ ├── mnist_net2net.py │ ├── mnist_siamese_graph.py │ ├── mnist_sklearn_wrapper.py │ ├── mnist_swwae.py │ ├── mnist_transfer_cnn.py │ ├── neural_doodle.py │ ├── neural_style_transfer.py │ ├── pretrained_word_embeddings.py │ ├── reuters_mlp.py │ ├── stateful_lstm.py │ ├── variational_autoencoder.py │ └── variational_autoencoder_deconv.py ├── MLyearning/ │ └── README.md ├── README.md ├── TensorFlow/ │ ├── LICENSE │ ├── README.md │ ├── examples/ │ │ ├── 1_Introduction/ │ │ │ ├── basic_operations.py │ │ │ └── helloworld.py │ │ ├── 2_BasicModels/ │ │ │ ├── linear_regression.py │ │ │ ├── logistic_regression.py │ │ │ └── nearest_neighbor.py │ │ ├── 3_NeuralNetworks/ │ │ │ ├── autoencoder.py │ │ │ ├── bidirectional_rnn.py │ │ │ ├── convolutional_network.py │ │ │ ├── dynamic_rnn.py │ │ │ ├── multilayer_perceptron.py │ │ │ └── recurrent_network.py │ │ ├── 4_Utils/ │ │ │ ├── save_restore_model.py │ │ │ ├── tensorboard_advanced.py │ │ │ └── tensorboard_basic.py │ │ └── 5_MultiGPU/ │ │ └── multigpu_basics.py │ ├── input_data.py │ ├── notebooks/ │ │ ├── 0_Prerequisite/ │ │ │ ├── ml_introduction.ipynb │ │ │ └── mnist_dataset_intro.ipynb │ │ ├── 1_Introduction/ │ │ │ ├── basic_operations.ipynb │ │ │ └── helloworld.ipynb │ │ ├── 2_BasicModels/ │ │ │ ├── linear_regression.ipynb │ │ │ ├── logistic_regression.ipynb │ │ │ └── nearest_neighbor.ipynb │ │ ├── 3_NeuralNetworks/ │ │ │ ├── autoencoder.ipynb │ │ │ ├── bidirectional_rnn.ipynb │ │ │ ├── convolutional_network.ipynb │ │ │ ├── multilayer_perceptron.ipynb │ │ │ └── recurrent_network.ipynb │ │ ├── 4_Utils/ │ │ │ ├── save_restore_model.ipynb │ │ │ └── tensorboard_basic.ipynb │ │ └── 5_MultiGPU/ │ │ └── multigpu_basics.ipynb │ └── tensorflow_distributed_mnist_demo.py └── Theano/ ├── cnn.py ├── linear_regression.py ├── logistic_regression.p └── neural_networks.py