├── LICENSE
├── ML-notes-html
├── 10_Keras.html
├── 11_Convolutional-Neural-Network-part1.html
├── 12_Convolutional-Neural-Network-part2.html
├── 13_Tips-for-Deep-Learning.html
├── 14_Why-Deep.html
├── 15_Semi-supervised-Learning.html
├── 16_Unsupervised-Learning-Introduction.html
├── 17_Unsupervised-Learning-PCA-part1.html
├── 18_Unsupervised-Learning-PCA-part2.html
├── 19_Matrix-Factorization.html
├── 1_Introduction.html
├── 20_Unsupervised-Learning-Word-Embedding.html
├── 21_Unsupervised-Learning-Neighbor-Embedding.html
├── 22_Unsupervised-Learning-Deep-Auto-encoder.html
├── 23_Unsupervised-Learning-Generation.html
├── 24_Transfer-Learning.html
├── 25_Support-Vector-Machine.html
├── 26_Recurrent-Neural-Network-part1.html
├── 27_Recurrent-Neural-Network-part2.html
├── 2_Regression-Case-Study.html
├── 3_Regression-demo(Adagrad).html
├── 4_Where-does-the-error-come-from.html
├── 5_Gradient-Descent.html
├── 6_Classification.html
├── 7_Logistic-Regression.html
├── 8_Deep-Learning.html
└── 9_Backpropagation.html
├── ML-notes-md
├── 10_Keras.md
├── 11_Convolutional Neural Network part1.md
├── 12_Convolutional Neural Network part2.md
├── 13_Tips for Deep Learning.md
├── 14_Why Deep.md
├── 15_Semi-supervised Learning.md
├── 16_Unsupervised Learning Introduction.md
├── 17_Unsupervised Learning PCA part1.md
├── 18_Unsupervised Learning PCA part2.md
├── 19_Matrix Factorization.md
├── 1_Introduction.md
├── 20_Unsupervised Learning Word Embedding.md
├── 21_Unsupervised Learning Neighbor Embedding.md
├── 22_Unsupervised Learning Deep Auto-encoder.md
├── 23_Unsupervised Learning Generation.md
├── 24_Transfer Learning.md
├── 25_Support Vector Machine.md
├── 26_Recurrent Neural Network part1.md
├── 27_Recurrent Neural Network part2.md
├── 2_Regression Case Study.md
├── 3_Regression demo(Adagrad).md
├── 4_Where does the error come from.md
├── 5_Gradient Descent.md
├── 6_Classification.md
├── 7_Logistic Regression.md
├── 8_Deep Learning.md
└── 9_Backpropagation.md
├── ML-notes-pdf
├── 1_Introduction.pdf
├── 2_Regression Case Study.pdf
├── 3_Regression demo(Adagrad).pdf
├── 4_Where does the error come from.pdf
├── 5_Gradient Descent.pdf
└── readme.md
├── README.md
├── code
├── Digits-Detection
│ ├── digits-detection-cnn.py
│ └── digits-detection.py
├── Gradient-Descent-Demo
│ ├── Gradient-Descent-Demo.html
│ ├── Gradient-Descent-Demo.ipynb
│ └── GradientDescentDemo_official.ipynb
└── pytorch
│ ├── PyTorch_Introduction.ipynb
│ ├── pytorch-introduction.md
│ └── pytorch-tips.md
├── img
├── 5000-tests.png
├── L1-L2.png
├── L1L2regularization.png
├── Xcp-2.png
├── Xcp-3.png
├── Xcp-4.png
├── Xcp-5.png
├── Xcp-compare.png
├── Xcp-overfitting.png
├── best-function.png
├── bias-variance.png
├── bias-vs-variance.png
├── cross-validation.png
├── ds.png
├── estimator.png
├── goodness-of-function.png
├── gradient-descent.png
├── gradient-stuck.png
├── gradient-two-parameters.png
├── hidden-factors.png
├── large-bias.png
├── large-variance.png
├── learningMap.png
├── loss-figure.png
├── loss-function.png
├── ml-book.png
├── model-bias.png
├── model-selection.png
├── model.png
├── n-flod-cross-validation.png
├── new-model.png
├── new-results.png
├── pokeman-parameters.png
├── regularization-illustration.png
├── regularization-performance.png
├── regularization.png
├── reinforcement-Learning.png
├── results.png
├── semi-supervised-Learning.png
├── structured-Learning.png
├── transfer-Learning.png
├── unsupervised-Learning.png
├── wx.jpg
├── wx.png
├── wxzf.png
├── zfb.jpg
├── zfb.png
└── zs.png
├── index.html
└── keras-tips.md
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/LICENSE
--------------------------------------------------------------------------------
/ML-notes-html/10_Keras.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/10_Keras.html
--------------------------------------------------------------------------------
/ML-notes-html/11_Convolutional-Neural-Network-part1.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/11_Convolutional-Neural-Network-part1.html
--------------------------------------------------------------------------------
/ML-notes-html/12_Convolutional-Neural-Network-part2.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/12_Convolutional-Neural-Network-part2.html
--------------------------------------------------------------------------------
/ML-notes-html/13_Tips-for-Deep-Learning.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/13_Tips-for-Deep-Learning.html
--------------------------------------------------------------------------------
/ML-notes-html/14_Why-Deep.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/14_Why-Deep.html
--------------------------------------------------------------------------------
/ML-notes-html/15_Semi-supervised-Learning.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/15_Semi-supervised-Learning.html
--------------------------------------------------------------------------------
/ML-notes-html/16_Unsupervised-Learning-Introduction.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/16_Unsupervised-Learning-Introduction.html
--------------------------------------------------------------------------------
/ML-notes-html/17_Unsupervised-Learning-PCA-part1.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/17_Unsupervised-Learning-PCA-part1.html
--------------------------------------------------------------------------------
/ML-notes-html/18_Unsupervised-Learning-PCA-part2.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/18_Unsupervised-Learning-PCA-part2.html
--------------------------------------------------------------------------------
/ML-notes-html/19_Matrix-Factorization.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/19_Matrix-Factorization.html
--------------------------------------------------------------------------------
/ML-notes-html/1_Introduction.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/1_Introduction.html
--------------------------------------------------------------------------------
/ML-notes-html/20_Unsupervised-Learning-Word-Embedding.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/20_Unsupervised-Learning-Word-Embedding.html
--------------------------------------------------------------------------------
/ML-notes-html/21_Unsupervised-Learning-Neighbor-Embedding.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/21_Unsupervised-Learning-Neighbor-Embedding.html
--------------------------------------------------------------------------------
/ML-notes-html/22_Unsupervised-Learning-Deep-Auto-encoder.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/22_Unsupervised-Learning-Deep-Auto-encoder.html
--------------------------------------------------------------------------------
/ML-notes-html/23_Unsupervised-Learning-Generation.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/23_Unsupervised-Learning-Generation.html
--------------------------------------------------------------------------------
/ML-notes-html/24_Transfer-Learning.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/24_Transfer-Learning.html
--------------------------------------------------------------------------------
/ML-notes-html/25_Support-Vector-Machine.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/25_Support-Vector-Machine.html
--------------------------------------------------------------------------------
/ML-notes-html/26_Recurrent-Neural-Network-part1.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/26_Recurrent-Neural-Network-part1.html
--------------------------------------------------------------------------------
/ML-notes-html/27_Recurrent-Neural-Network-part2.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/27_Recurrent-Neural-Network-part2.html
--------------------------------------------------------------------------------
/ML-notes-html/2_Regression-Case-Study.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/2_Regression-Case-Study.html
--------------------------------------------------------------------------------
/ML-notes-html/3_Regression-demo(Adagrad).html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/3_Regression-demo(Adagrad).html
--------------------------------------------------------------------------------
/ML-notes-html/4_Where-does-the-error-come-from.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/4_Where-does-the-error-come-from.html
--------------------------------------------------------------------------------
/ML-notes-html/5_Gradient-Descent.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/5_Gradient-Descent.html
--------------------------------------------------------------------------------
/ML-notes-html/6_Classification.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/6_Classification.html
--------------------------------------------------------------------------------
/ML-notes-html/7_Logistic-Regression.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/7_Logistic-Regression.html
--------------------------------------------------------------------------------
/ML-notes-html/8_Deep-Learning.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/8_Deep-Learning.html
--------------------------------------------------------------------------------
/ML-notes-html/9_Backpropagation.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-html/9_Backpropagation.html
--------------------------------------------------------------------------------
/ML-notes-md/10_Keras.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/10_Keras.md
--------------------------------------------------------------------------------
/ML-notes-md/11_Convolutional Neural Network part1.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/11_Convolutional Neural Network part1.md
--------------------------------------------------------------------------------
/ML-notes-md/12_Convolutional Neural Network part2.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/12_Convolutional Neural Network part2.md
--------------------------------------------------------------------------------
/ML-notes-md/13_Tips for Deep Learning.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/13_Tips for Deep Learning.md
--------------------------------------------------------------------------------
/ML-notes-md/14_Why Deep.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/14_Why Deep.md
--------------------------------------------------------------------------------
/ML-notes-md/15_Semi-supervised Learning.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/15_Semi-supervised Learning.md
--------------------------------------------------------------------------------
/ML-notes-md/16_Unsupervised Learning Introduction.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/16_Unsupervised Learning Introduction.md
--------------------------------------------------------------------------------
/ML-notes-md/17_Unsupervised Learning PCA part1.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/17_Unsupervised Learning PCA part1.md
--------------------------------------------------------------------------------
/ML-notes-md/18_Unsupervised Learning PCA part2.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/18_Unsupervised Learning PCA part2.md
--------------------------------------------------------------------------------
/ML-notes-md/19_Matrix Factorization.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/19_Matrix Factorization.md
--------------------------------------------------------------------------------
/ML-notes-md/1_Introduction.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/1_Introduction.md
--------------------------------------------------------------------------------
/ML-notes-md/20_Unsupervised Learning Word Embedding.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/20_Unsupervised Learning Word Embedding.md
--------------------------------------------------------------------------------
/ML-notes-md/21_Unsupervised Learning Neighbor Embedding.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/21_Unsupervised Learning Neighbor Embedding.md
--------------------------------------------------------------------------------
/ML-notes-md/22_Unsupervised Learning Deep Auto-encoder.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/22_Unsupervised Learning Deep Auto-encoder.md
--------------------------------------------------------------------------------
/ML-notes-md/23_Unsupervised Learning Generation.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/23_Unsupervised Learning Generation.md
--------------------------------------------------------------------------------
/ML-notes-md/24_Transfer Learning.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/24_Transfer Learning.md
--------------------------------------------------------------------------------
/ML-notes-md/25_Support Vector Machine.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/25_Support Vector Machine.md
--------------------------------------------------------------------------------
/ML-notes-md/26_Recurrent Neural Network part1.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/26_Recurrent Neural Network part1.md
--------------------------------------------------------------------------------
/ML-notes-md/27_Recurrent Neural Network part2.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/27_Recurrent Neural Network part2.md
--------------------------------------------------------------------------------
/ML-notes-md/2_Regression Case Study.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/2_Regression Case Study.md
--------------------------------------------------------------------------------
/ML-notes-md/3_Regression demo(Adagrad).md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/3_Regression demo(Adagrad).md
--------------------------------------------------------------------------------
/ML-notes-md/4_Where does the error come from.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/4_Where does the error come from.md
--------------------------------------------------------------------------------
/ML-notes-md/5_Gradient Descent.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/5_Gradient Descent.md
--------------------------------------------------------------------------------
/ML-notes-md/6_Classification.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/6_Classification.md
--------------------------------------------------------------------------------
/ML-notes-md/7_Logistic Regression.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/7_Logistic Regression.md
--------------------------------------------------------------------------------
/ML-notes-md/8_Deep Learning.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/8_Deep Learning.md
--------------------------------------------------------------------------------
/ML-notes-md/9_Backpropagation.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-md/9_Backpropagation.md
--------------------------------------------------------------------------------
/ML-notes-pdf/1_Introduction.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-pdf/1_Introduction.pdf
--------------------------------------------------------------------------------
/ML-notes-pdf/2_Regression Case Study.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-pdf/2_Regression Case Study.pdf
--------------------------------------------------------------------------------
/ML-notes-pdf/3_Regression demo(Adagrad).pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-pdf/3_Regression demo(Adagrad).pdf
--------------------------------------------------------------------------------
/ML-notes-pdf/4_Where does the error come from.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-pdf/4_Where does the error come from.pdf
--------------------------------------------------------------------------------
/ML-notes-pdf/5_Gradient Descent.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/ML-notes-pdf/5_Gradient Descent.pdf
--------------------------------------------------------------------------------
/ML-notes-pdf/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/README.md
--------------------------------------------------------------------------------
/code/Digits-Detection/digits-detection-cnn.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/code/Digits-Detection/digits-detection-cnn.py
--------------------------------------------------------------------------------
/code/Digits-Detection/digits-detection.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/code/Digits-Detection/digits-detection.py
--------------------------------------------------------------------------------
/code/Gradient-Descent-Demo/Gradient-Descent-Demo.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/code/Gradient-Descent-Demo/Gradient-Descent-Demo.html
--------------------------------------------------------------------------------
/code/Gradient-Descent-Demo/Gradient-Descent-Demo.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/code/Gradient-Descent-Demo/Gradient-Descent-Demo.ipynb
--------------------------------------------------------------------------------
/code/Gradient-Descent-Demo/GradientDescentDemo_official.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/code/Gradient-Descent-Demo/GradientDescentDemo_official.ipynb
--------------------------------------------------------------------------------
/code/pytorch/PyTorch_Introduction.ipynb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/code/pytorch/PyTorch_Introduction.ipynb
--------------------------------------------------------------------------------
/code/pytorch/pytorch-introduction.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/code/pytorch/pytorch-introduction.md
--------------------------------------------------------------------------------
/code/pytorch/pytorch-tips.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/code/pytorch/pytorch-tips.md
--------------------------------------------------------------------------------
/img/5000-tests.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/5000-tests.png
--------------------------------------------------------------------------------
/img/L1-L2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/L1-L2.png
--------------------------------------------------------------------------------
/img/L1L2regularization.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/L1L2regularization.png
--------------------------------------------------------------------------------
/img/Xcp-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/Xcp-2.png
--------------------------------------------------------------------------------
/img/Xcp-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/Xcp-3.png
--------------------------------------------------------------------------------
/img/Xcp-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/Xcp-4.png
--------------------------------------------------------------------------------
/img/Xcp-5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/Xcp-5.png
--------------------------------------------------------------------------------
/img/Xcp-compare.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/Xcp-compare.png
--------------------------------------------------------------------------------
/img/Xcp-overfitting.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/Xcp-overfitting.png
--------------------------------------------------------------------------------
/img/best-function.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/best-function.png
--------------------------------------------------------------------------------
/img/bias-variance.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/bias-variance.png
--------------------------------------------------------------------------------
/img/bias-vs-variance.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/bias-vs-variance.png
--------------------------------------------------------------------------------
/img/cross-validation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/cross-validation.png
--------------------------------------------------------------------------------
/img/ds.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/ds.png
--------------------------------------------------------------------------------
/img/estimator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/estimator.png
--------------------------------------------------------------------------------
/img/goodness-of-function.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/goodness-of-function.png
--------------------------------------------------------------------------------
/img/gradient-descent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/gradient-descent.png
--------------------------------------------------------------------------------
/img/gradient-stuck.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/gradient-stuck.png
--------------------------------------------------------------------------------
/img/gradient-two-parameters.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/gradient-two-parameters.png
--------------------------------------------------------------------------------
/img/hidden-factors.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/hidden-factors.png
--------------------------------------------------------------------------------
/img/large-bias.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/large-bias.png
--------------------------------------------------------------------------------
/img/large-variance.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/large-variance.png
--------------------------------------------------------------------------------
/img/learningMap.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/learningMap.png
--------------------------------------------------------------------------------
/img/loss-figure.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/loss-figure.png
--------------------------------------------------------------------------------
/img/loss-function.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/loss-function.png
--------------------------------------------------------------------------------
/img/ml-book.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/ml-book.png
--------------------------------------------------------------------------------
/img/model-bias.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/model-bias.png
--------------------------------------------------------------------------------
/img/model-selection.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/model-selection.png
--------------------------------------------------------------------------------
/img/model.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/model.png
--------------------------------------------------------------------------------
/img/n-flod-cross-validation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/n-flod-cross-validation.png
--------------------------------------------------------------------------------
/img/new-model.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/new-model.png
--------------------------------------------------------------------------------
/img/new-results.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/new-results.png
--------------------------------------------------------------------------------
/img/pokeman-parameters.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/pokeman-parameters.png
--------------------------------------------------------------------------------
/img/regularization-illustration.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/regularization-illustration.png
--------------------------------------------------------------------------------
/img/regularization-performance.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/regularization-performance.png
--------------------------------------------------------------------------------
/img/regularization.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/regularization.png
--------------------------------------------------------------------------------
/img/reinforcement-Learning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/reinforcement-Learning.png
--------------------------------------------------------------------------------
/img/results.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/results.png
--------------------------------------------------------------------------------
/img/semi-supervised-Learning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/semi-supervised-Learning.png
--------------------------------------------------------------------------------
/img/structured-Learning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/structured-Learning.png
--------------------------------------------------------------------------------
/img/transfer-Learning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/transfer-Learning.png
--------------------------------------------------------------------------------
/img/unsupervised-Learning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/unsupervised-Learning.png
--------------------------------------------------------------------------------
/img/wx.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/wx.jpg
--------------------------------------------------------------------------------
/img/wx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/wx.png
--------------------------------------------------------------------------------
/img/wxzf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/wxzf.png
--------------------------------------------------------------------------------
/img/zfb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/zfb.jpg
--------------------------------------------------------------------------------
/img/zfb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/zfb.png
--------------------------------------------------------------------------------
/img/zs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/img/zs.png
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/index.html
--------------------------------------------------------------------------------
/keras-tips.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sakura-gh/ML-notes/HEAD/keras-tips.md
--------------------------------------------------------------------------------