├── .gitignore ├── 01 標準的 Fully Connected (Dense) NN.ipynb ├── 01-1. 標準神經網路做手寫辨識(MNIST).ipynb ├── 01-2 取回你訓練好的神經網路.ipynb ├── 01-3. 作業說明_改造你的神經網路.ipynb ├── 02-1. 用CNN圖形辨識(還是MNIST).ipynb ├── 02-2. 作業說明_調校你的CNN.ipynb ├── 04-1. 用RNN做情意分析.ipynb ├── 05-1. 建立神經網路的其他方式並學習第一個轉移學習模型.ipynb ├── 05-2. 作業說明_轉移學習的練習 (以 CNN 手寫辨識為例).ipynb ├── 06-1. 建立神經網路的高級方式.ipynb ├── 07-1. 自編碼器 Autoencoder.ipynb ├── 07-2. 使用 CNN 建立 VAE.ipynb ├── README.md ├── Untitled.ipynb ├── VAE.ipynb ├── VAE_handwriting_model_weights.h5 ├── autoencoder.png ├── autoencoder_handwriting_model_weights.h5 ├── branch-and-merge.png ├── branch-and-merge_final.png ├── data_generator.ipynb ├── handwriting_model_architecture.json ├── handwriting_model_cnn.json ├── handwriting_model_weights.h5 ├── handwriting_weights_cnn.h5 ├── imdb_model_architecture.json ├── imdb_model_weights.h5 ├── imdb_rnn.h5 ├── model01.png ├── myrnn.h5 ├── plain_model.png ├── variational_autoencoder.png ├── 工研院2018 ├── CNN_fail.ipynb ├── NN_MNIST.ipynb ├── Untitled.ipynb ├── handwriting_model_architecture.json ├── handwriting_model_weights.h5 ├── 使用NN_MNIST.ipynb └── 復習.ipynb └── 政大職涯中心2019 ├── 打造人生第一個神經網路.ipynb └── 打造人生第一個神經網路正式版.ipynb /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .ipynb_checkpoints 3 | handouts/* 4 | Lab/* 5 | -------------------------------------------------------------------------------- /01 標準的 Fully Connected (Dense) NN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/01 標準的 Fully Connected (Dense) NN.ipynb -------------------------------------------------------------------------------- /01-1. 標準神經網路做手寫辨識(MNIST).ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/01-1. 標準神經網路做手寫辨識(MNIST).ipynb -------------------------------------------------------------------------------- /01-2 取回你訓練好的神經網路.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/01-2 取回你訓練好的神經網路.ipynb -------------------------------------------------------------------------------- /01-3. 作業說明_改造你的神經網路.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/01-3. 作業說明_改造你的神經網路.ipynb -------------------------------------------------------------------------------- /02-1. 用CNN圖形辨識(還是MNIST).ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/02-1. 用CNN圖形辨識(還是MNIST).ipynb -------------------------------------------------------------------------------- /02-2. 作業說明_調校你的CNN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/02-2. 作業說明_調校你的CNN.ipynb -------------------------------------------------------------------------------- /04-1. 用RNN做情意分析.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/04-1. 用RNN做情意分析.ipynb -------------------------------------------------------------------------------- /05-1. 建立神經網路的其他方式並學習第一個轉移學習模型.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/05-1. 建立神經網路的其他方式並學習第一個轉移學習模型.ipynb -------------------------------------------------------------------------------- /05-2. 作業說明_轉移學習的練習 (以 CNN 手寫辨識為例).ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/05-2. 作業說明_轉移學習的練習 (以 CNN 手寫辨識為例).ipynb -------------------------------------------------------------------------------- /06-1. 建立神經網路的高級方式.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/06-1. 建立神經網路的高級方式.ipynb -------------------------------------------------------------------------------- /07-1. 自編碼器 Autoencoder.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/07-1. 自編碼器 Autoencoder.ipynb -------------------------------------------------------------------------------- /07-2. 使用 CNN 建立 VAE.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/07-2. 使用 CNN 建立 VAE.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/README.md -------------------------------------------------------------------------------- /Untitled.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/Untitled.ipynb -------------------------------------------------------------------------------- /VAE.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/VAE.ipynb -------------------------------------------------------------------------------- /VAE_handwriting_model_weights.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/VAE_handwriting_model_weights.h5 -------------------------------------------------------------------------------- /autoencoder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/autoencoder.png -------------------------------------------------------------------------------- /autoencoder_handwriting_model_weights.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/autoencoder_handwriting_model_weights.h5 -------------------------------------------------------------------------------- /branch-and-merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/branch-and-merge.png -------------------------------------------------------------------------------- /branch-and-merge_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/branch-and-merge_final.png -------------------------------------------------------------------------------- /data_generator.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/data_generator.ipynb -------------------------------------------------------------------------------- /handwriting_model_architecture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/handwriting_model_architecture.json -------------------------------------------------------------------------------- /handwriting_model_cnn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/handwriting_model_cnn.json -------------------------------------------------------------------------------- /handwriting_model_weights.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/handwriting_model_weights.h5 -------------------------------------------------------------------------------- /handwriting_weights_cnn.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/handwriting_weights_cnn.h5 -------------------------------------------------------------------------------- /imdb_model_architecture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/imdb_model_architecture.json -------------------------------------------------------------------------------- /imdb_model_weights.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/imdb_model_weights.h5 -------------------------------------------------------------------------------- /imdb_rnn.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/imdb_rnn.h5 -------------------------------------------------------------------------------- /model01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/model01.png -------------------------------------------------------------------------------- /myrnn.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/myrnn.h5 -------------------------------------------------------------------------------- /plain_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/plain_model.png -------------------------------------------------------------------------------- /variational_autoencoder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/variational_autoencoder.png -------------------------------------------------------------------------------- /工研院2018/CNN_fail.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/工研院2018/CNN_fail.ipynb -------------------------------------------------------------------------------- /工研院2018/NN_MNIST.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/工研院2018/NN_MNIST.ipynb -------------------------------------------------------------------------------- /工研院2018/Untitled.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/工研院2018/Untitled.ipynb -------------------------------------------------------------------------------- /工研院2018/handwriting_model_architecture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/工研院2018/handwriting_model_architecture.json -------------------------------------------------------------------------------- /工研院2018/handwriting_model_weights.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/工研院2018/handwriting_model_weights.h5 -------------------------------------------------------------------------------- /工研院2018/使用NN_MNIST.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/工研院2018/使用NN_MNIST.ipynb -------------------------------------------------------------------------------- /工研院2018/復習.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/工研院2018/復習.ipynb -------------------------------------------------------------------------------- /政大職涯中心2019/打造人生第一個神經網路.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/政大職涯中心2019/打造人生第一個神經網路.ipynb -------------------------------------------------------------------------------- /政大職涯中心2019/打造人生第一個神經網路正式版.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yenlung/Deep-Learning-MOOC/HEAD/政大職涯中心2019/打造人生第一個神經網路正式版.ipynb --------------------------------------------------------------------------------