├── .dockerignore ├── .gitattributes ├── .gitignore ├── Dockerfile ├── README.md ├── environment_py2.yml ├── environment_py3.yml ├── jupyter1.png ├── jupyter_notebook_config.py ├── notebook ├── 3.png ├── Lecture10 │ ├── 1.OCR_v1_cnn.ipynb │ ├── 1.使用卷积神经网络进行端到端学习.ipynb │ ├── 2.OCR_v2_rnn.ipynb │ ├── 2.使用循环神经网络破解验证码.ipynb │ ├── baiduyun_deeplearning_competition │ │ ├── LICENSE │ │ ├── README.md │ │ ├── RNN.md │ │ ├── imgs │ │ │ ├── 0O0O.png │ │ │ ├── deep-speech-ctc-small.png │ │ │ ├── generator_vis.png │ │ │ ├── level1.png │ │ │ ├── level1_117422.png │ │ │ ├── level1_142660.png │ │ │ ├── level1_base_model.png │ │ │ ├── level1_gen1.png │ │ │ ├── level1_gen2.png │ │ │ ├── level1_leaderboard.png │ │ │ ├── level1_loss.png │ │ │ ├── level1_model.png │ │ │ ├── level1_preprocessing.png │ │ │ ├── level1_score.png │ │ │ ├── level1_visualization.png │ │ │ ├── level2.jpg │ │ │ ├── level2_95170.png │ │ │ ├── level2_95170_0.png │ │ │ ├── level2_barplot.png │ │ │ ├── level2_basemodel.png │ │ │ ├── level2_cnn_model.png │ │ │ ├── level2_generator.png │ │ │ ├── level2_generator2.png │ │ │ ├── level2_loss.png │ │ │ ├── level2_loss_lstm.png │ │ │ ├── level2_preprocessing1.png │ │ │ ├── level2_preprocessing2.png │ │ │ ├── level2_preprocessing3.png │ │ │ ├── level2_preprocessing4.png │ │ │ ├── level2_preprocessing5.png │ │ │ ├── level2_preprocessing6.png │ │ │ ├── level2_sample1.png │ │ │ ├── level2_scatter_matrix.png │ │ │ ├── loss.png │ │ │ ├── loss_acc_3.png │ │ │ ├── model2.png │ │ │ └── test_model2.png │ │ ├── round1.md │ │ ├── round1 │ │ │ ├── fonts │ │ │ │ ├── Andale Mono.ttf │ │ │ │ ├── Arial Black.ttf │ │ │ │ ├── Arial.ttf │ │ │ │ ├── CALIBRI.TTF │ │ │ │ ├── Comic Sans MS.ttf │ │ │ │ ├── Futura.ttc │ │ │ │ ├── Georgia.ttf │ │ │ │ ├── GillSans.ttc │ │ │ │ ├── Helvetica.ttf │ │ │ │ ├── Impact.ttf │ │ │ │ ├── Menlo.ttc │ │ │ │ ├── Optima.ttc │ │ │ │ ├── Times New Roman Bold.ttf │ │ │ │ ├── Times New Roman.ttf │ │ │ │ ├── Verdana.ttf │ │ │ │ └── consola.ttf │ │ │ ├── generator.ipynb │ │ │ ├── image.py │ │ │ ├── image.pyc │ │ │ ├── main.ipynb │ │ │ ├── make_parallel.py │ │ │ ├── make_parallel.pyc │ │ │ ├── multiGPU_model_conversion.ipynb │ │ │ └── preprocess.ipynb │ │ ├── round2.md │ │ └── round2 │ │ │ ├── a.png │ │ │ ├── data_explore.ipynb │ │ │ ├── ensembledResults.ipynb │ │ │ ├── loss_function.ipynb │ │ │ ├── make_parallel.py │ │ │ ├── make_parallel.pyc │ │ │ ├── plot_model.ipynb │ │ │ ├── preprocess.ipynb │ │ │ ├── preprocess_analysis.ipynb │ │ │ ├── preprocess_multi_72.ipynb │ │ │ ├── preprocess_multi_72.testset.ipynb │ │ │ ├── preprocess_multi_81.ipynb │ │ │ ├── preprocess_multi_81.testset.ipynb │ │ │ ├── test_fixedSize_model_346_split2_3.ipynb │ │ │ ├── test_fixedSize_model_346_split2_4_all150rounds.ipynb │ │ │ ├── test_fixedSize_model_end2end3StructModified_mc_l2_moreLayers_generator2.ipynb │ │ │ ├── testset_0.9976.ipynb │ │ │ ├── testset_0.9977.ipynb │ │ │ └── testset_all150rounds.ipynb │ ├── data.md │ └── model.png ├── Lecture11 │ ├── FCN │ │ ├── example_image.png │ │ ├── example_label.png │ │ ├── runfcn.py │ │ └── runfcn.sh │ └── Lecture10.ipynb ├── Lecture12.ipynb ├── Lecture2.ipynb ├── Lecture3.ipynb ├── Lecture4.ipynb ├── Lecture5.ipynb ├── Lecture6.ipynb ├── Lecture7.ipynb ├── Lecture8.ipynb ├── Lecture9 │ ├── CatDog_v1_cnn.ipynb │ ├── CatDog_v2_cnnPretrained.ipynb │ ├── CatDog_v3_multiCnnEnsemble.ipynb │ ├── 猫狗大战1.0--使用卷积神经网络直接进行训练.ipynb │ ├── 猫狗大战2.0——使用ImageNet数据集预训练模型.ipynb │ └── 猫狗大战3.0——使用多种预训练模型组合提升表现.ipynb ├── README.md ├── gray_out.png ├── jizhi_qinding.png └── messi5.jpg └── run.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/README.md -------------------------------------------------------------------------------- /environment_py2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/environment_py2.yml -------------------------------------------------------------------------------- /environment_py3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/environment_py3.yml -------------------------------------------------------------------------------- /jupyter1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/jupyter1.png -------------------------------------------------------------------------------- /jupyter_notebook_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/jupyter_notebook_config.py -------------------------------------------------------------------------------- /notebook/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/3.png -------------------------------------------------------------------------------- /notebook/Lecture10/1.OCR_v1_cnn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/1.OCR_v1_cnn.ipynb -------------------------------------------------------------------------------- /notebook/Lecture10/1.使用卷积神经网络进行端到端学习.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/1.使用卷积神经网络进行端到端学习.ipynb -------------------------------------------------------------------------------- /notebook/Lecture10/2.OCR_v2_rnn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/2.OCR_v2_rnn.ipynb -------------------------------------------------------------------------------- /notebook/Lecture10/2.使用循环神经网络破解验证码.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/2.使用循环神经网络破解验证码.ipynb -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/LICENSE -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/README.md -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/RNN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/RNN.md -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/0O0O.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/0O0O.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/deep-speech-ctc-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/deep-speech-ctc-small.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/generator_vis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/generator_vis.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level1.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level1_117422.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level1_117422.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level1_142660.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level1_142660.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level1_base_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level1_base_model.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level1_gen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level1_gen1.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level1_gen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level1_gen2.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level1_leaderboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level1_leaderboard.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level1_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level1_loss.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level1_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level1_model.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level1_preprocessing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level1_preprocessing.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level1_score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level1_score.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level1_visualization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level1_visualization.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2.jpg -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_95170.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_95170.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_95170_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_95170_0.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_barplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_barplot.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_basemodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_basemodel.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_cnn_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_cnn_model.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_generator.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_generator2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_generator2.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_loss.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_loss_lstm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_loss_lstm.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_preprocessing1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_preprocessing1.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_preprocessing2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_preprocessing2.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_preprocessing3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_preprocessing3.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_preprocessing4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_preprocessing4.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_preprocessing5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_preprocessing5.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_preprocessing6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_preprocessing6.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_sample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_sample1.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_scatter_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/level2_scatter_matrix.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/loss.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/loss_acc_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/loss_acc_3.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/model2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/model2.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/imgs/test_model2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/imgs/test_model2.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round1.md -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/Andale Mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/Andale Mono.ttf -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/Arial Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/Arial Black.ttf -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/Arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/Arial.ttf -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/CALIBRI.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/CALIBRI.TTF -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/Comic Sans MS.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/Comic Sans MS.ttf -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/Futura.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/Futura.ttc -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/Georgia.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/Georgia.ttf -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/GillSans.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/GillSans.ttc -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/Helvetica.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/Helvetica.ttf -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/Impact.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/Impact.ttf -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/Menlo.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/Menlo.ttc -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/Optima.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/Optima.ttc -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/Times New Roman Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/Times New Roman Bold.ttf -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/Times New Roman.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/Times New Roman.ttf -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/Verdana.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/Verdana.ttf -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/consola.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round1/fonts/consola.ttf -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round1/generator.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round1/generator.ipynb -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round1/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round1/image.py -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round1/image.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round1/image.pyc -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round1/main.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round1/main.ipynb -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round1/make_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round1/make_parallel.py -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round1/make_parallel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round1/make_parallel.pyc -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round1/multiGPU_model_conversion.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round1/multiGPU_model_conversion.ipynb -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round1/preprocess.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round1/preprocess.ipynb -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round2.md -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round2/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round2/a.png -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round2/data_explore.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round2/data_explore.ipynb -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round2/ensembledResults.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round2/ensembledResults.ipynb -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round2/loss_function.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round2/loss_function.ipynb -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round2/make_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round2/make_parallel.py -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round2/make_parallel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round2/make_parallel.pyc -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round2/plot_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round2/plot_model.ipynb -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round2/preprocess.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round2/preprocess.ipynb -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round2/preprocess_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round2/preprocess_analysis.ipynb -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round2/preprocess_multi_72.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round2/preprocess_multi_72.ipynb -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round2/preprocess_multi_72.testset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round2/preprocess_multi_72.testset.ipynb -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round2/preprocess_multi_81.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round2/preprocess_multi_81.ipynb -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round2/preprocess_multi_81.testset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round2/preprocess_multi_81.testset.ipynb -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round2/test_fixedSize_model_346_split2_3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round2/test_fixedSize_model_346_split2_3.ipynb -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round2/test_fixedSize_model_346_split2_4_all150rounds.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round2/test_fixedSize_model_346_split2_4_all150rounds.ipynb -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round2/test_fixedSize_model_end2end3StructModified_mc_l2_moreLayers_generator2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round2/test_fixedSize_model_end2end3StructModified_mc_l2_moreLayers_generator2.ipynb -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round2/testset_0.9976.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round2/testset_0.9976.ipynb -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round2/testset_0.9977.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round2/testset_0.9977.ipynb -------------------------------------------------------------------------------- /notebook/Lecture10/baiduyun_deeplearning_competition/round2/testset_all150rounds.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/baiduyun_deeplearning_competition/round2/testset_all150rounds.ipynb -------------------------------------------------------------------------------- /notebook/Lecture10/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/data.md -------------------------------------------------------------------------------- /notebook/Lecture10/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture10/model.png -------------------------------------------------------------------------------- /notebook/Lecture11/FCN/example_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture11/FCN/example_image.png -------------------------------------------------------------------------------- /notebook/Lecture11/FCN/example_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture11/FCN/example_label.png -------------------------------------------------------------------------------- /notebook/Lecture11/FCN/runfcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture11/FCN/runfcn.py -------------------------------------------------------------------------------- /notebook/Lecture11/FCN/runfcn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture11/FCN/runfcn.sh -------------------------------------------------------------------------------- /notebook/Lecture11/Lecture10.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture11/Lecture10.ipynb -------------------------------------------------------------------------------- /notebook/Lecture12.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture12.ipynb -------------------------------------------------------------------------------- /notebook/Lecture2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture2.ipynb -------------------------------------------------------------------------------- /notebook/Lecture3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture3.ipynb -------------------------------------------------------------------------------- /notebook/Lecture4.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture4.ipynb -------------------------------------------------------------------------------- /notebook/Lecture5.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture5.ipynb -------------------------------------------------------------------------------- /notebook/Lecture6.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture6.ipynb -------------------------------------------------------------------------------- /notebook/Lecture7.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture7.ipynb -------------------------------------------------------------------------------- /notebook/Lecture8.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture8.ipynb -------------------------------------------------------------------------------- /notebook/Lecture9/CatDog_v1_cnn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture9/CatDog_v1_cnn.ipynb -------------------------------------------------------------------------------- /notebook/Lecture9/CatDog_v2_cnnPretrained.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture9/CatDog_v2_cnnPretrained.ipynb -------------------------------------------------------------------------------- /notebook/Lecture9/CatDog_v3_multiCnnEnsemble.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture9/CatDog_v3_multiCnnEnsemble.ipynb -------------------------------------------------------------------------------- /notebook/Lecture9/猫狗大战1.0--使用卷积神经网络直接进行训练.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture9/猫狗大战1.0--使用卷积神经网络直接进行训练.ipynb -------------------------------------------------------------------------------- /notebook/Lecture9/猫狗大战2.0——使用ImageNet数据集预训练模型.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture9/猫狗大战2.0——使用ImageNet数据集预训练模型.ipynb -------------------------------------------------------------------------------- /notebook/Lecture9/猫狗大战3.0——使用多种预训练模型组合提升表现.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/Lecture9/猫狗大战3.0——使用多种预训练模型组合提升表现.ipynb -------------------------------------------------------------------------------- /notebook/README.md: -------------------------------------------------------------------------------- 1 | 第12章的代码和有关的资源文件可以在这里下载:https://github.com/ypwhs/CAM 2 | -------------------------------------------------------------------------------- /notebook/gray_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/gray_out.png -------------------------------------------------------------------------------- /notebook/jizhi_qinding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/jizhi_qinding.png -------------------------------------------------------------------------------- /notebook/messi5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/notebook/messi5.jpg -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinglue/DL4Img/HEAD/run.sh --------------------------------------------------------------------------------