├── .gitattributes ├── .gitignore ├── .idea ├── DeepLearning_Demo.iml ├── dictionaries │ └── shixiangfu.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── AdversarialNetworks ├── .gitignore ├── Readme.md ├── competition.py ├── demo_gaussian.py ├── demo_gaussian_mixture.py ├── demo_normal.py ├── gradient_descent.py ├── models.py ├── tests.py └── utils.py ├── BackPropagation └── bp.py ├── CNN ├── CNN_tf_demo.py └── README.md ├── README.md ├── RNN_txt_prediction_numpy_only ├── Learning RNN.docx ├── README.md ├── input.txt └── min-char-rnn.py ├── Resnet ├── .idea │ ├── Digit_Rec_Kaggle.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml ├── Code │ └── resnet.py ├── Data │ ├── test.csv │ └── train.csv ├── readme.md └── url ├── attention ├── attention_keras.py ├── attention_tf.py └── readme.md ├── distributed_tensorflow └── distributed_tensorflow.py ├── linear_regression_use_gradient_decent ├── data.csv ├── linear_regression.py └── readme.md └── siamese_tf_mnist ├── .gitignore ├── inference.py ├── readme.md ├── result.png ├── run.py └── visualize.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/DeepLearning_Demo.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/.idea/DeepLearning_Demo.iml -------------------------------------------------------------------------------- /.idea/dictionaries/shixiangfu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/.idea/dictionaries/shixiangfu.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /AdversarialNetworks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/AdversarialNetworks/.gitignore -------------------------------------------------------------------------------- /AdversarialNetworks/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/AdversarialNetworks/Readme.md -------------------------------------------------------------------------------- /AdversarialNetworks/competition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/AdversarialNetworks/competition.py -------------------------------------------------------------------------------- /AdversarialNetworks/demo_gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/AdversarialNetworks/demo_gaussian.py -------------------------------------------------------------------------------- /AdversarialNetworks/demo_gaussian_mixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/AdversarialNetworks/demo_gaussian_mixture.py -------------------------------------------------------------------------------- /AdversarialNetworks/demo_normal.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AdversarialNetworks/gradient_descent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/AdversarialNetworks/gradient_descent.py -------------------------------------------------------------------------------- /AdversarialNetworks/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/AdversarialNetworks/models.py -------------------------------------------------------------------------------- /AdversarialNetworks/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/AdversarialNetworks/tests.py -------------------------------------------------------------------------------- /AdversarialNetworks/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/AdversarialNetworks/utils.py -------------------------------------------------------------------------------- /BackPropagation/bp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/BackPropagation/bp.py -------------------------------------------------------------------------------- /CNN/CNN_tf_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/CNN/CNN_tf_demo.py -------------------------------------------------------------------------------- /CNN/README.md: -------------------------------------------------------------------------------- 1 | # CNN_classifier_tensorflow_demo 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DeepLearning_Demo 2 | some demo for practice DL 3 | -------------------------------------------------------------------------------- /RNN_txt_prediction_numpy_only/Learning RNN.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/RNN_txt_prediction_numpy_only/Learning RNN.docx -------------------------------------------------------------------------------- /RNN_txt_prediction_numpy_only/README.md: -------------------------------------------------------------------------------- 1 | 用numpy实现一个RNN,做文本预测。适合用于理解RNN原理。 -------------------------------------------------------------------------------- /RNN_txt_prediction_numpy_only/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/RNN_txt_prediction_numpy_only/input.txt -------------------------------------------------------------------------------- /RNN_txt_prediction_numpy_only/min-char-rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/RNN_txt_prediction_numpy_only/min-char-rnn.py -------------------------------------------------------------------------------- /Resnet/.idea/Digit_Rec_Kaggle.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/Resnet/.idea/Digit_Rec_Kaggle.iml -------------------------------------------------------------------------------- /Resnet/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/Resnet/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /Resnet/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/Resnet/.idea/misc.xml -------------------------------------------------------------------------------- /Resnet/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/Resnet/.idea/modules.xml -------------------------------------------------------------------------------- /Resnet/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/Resnet/.idea/workspace.xml -------------------------------------------------------------------------------- /Resnet/Code/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/Resnet/Code/resnet.py -------------------------------------------------------------------------------- /Resnet/Data/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/Resnet/Data/test.csv -------------------------------------------------------------------------------- /Resnet/Data/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/Resnet/Data/train.csv -------------------------------------------------------------------------------- /Resnet/readme.md: -------------------------------------------------------------------------------- 1 | 在kaggle上发现这份代码,感觉很适合作为新手理解resnet,未做修改。 2 | -------------------------------------------------------------------------------- /Resnet/url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/Resnet/url -------------------------------------------------------------------------------- /attention/attention_keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/attention/attention_keras.py -------------------------------------------------------------------------------- /attention/attention_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/attention/attention_tf.py -------------------------------------------------------------------------------- /attention/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/attention/readme.md -------------------------------------------------------------------------------- /distributed_tensorflow/distributed_tensorflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/distributed_tensorflow/distributed_tensorflow.py -------------------------------------------------------------------------------- /linear_regression_use_gradient_decent/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/linear_regression_use_gradient_decent/data.csv -------------------------------------------------------------------------------- /linear_regression_use_gradient_decent/linear_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/linear_regression_use_gradient_decent/linear_regression.py -------------------------------------------------------------------------------- /linear_regression_use_gradient_decent/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/linear_regression_use_gradient_decent/readme.md -------------------------------------------------------------------------------- /siamese_tf_mnist/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/siamese_tf_mnist/.gitignore -------------------------------------------------------------------------------- /siamese_tf_mnist/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/siamese_tf_mnist/inference.py -------------------------------------------------------------------------------- /siamese_tf_mnist/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/siamese_tf_mnist/readme.md -------------------------------------------------------------------------------- /siamese_tf_mnist/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/siamese_tf_mnist/result.png -------------------------------------------------------------------------------- /siamese_tf_mnist/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/siamese_tf_mnist/run.py -------------------------------------------------------------------------------- /siamese_tf_mnist/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shicoder/DeepLearning_Demo/HEAD/siamese_tf_mnist/visualize.py --------------------------------------------------------------------------------