Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wzyonggege/statistical-learning-method
《统计学习方法》笔记-基于Python算法实现
https://github.com/wzyonggege/statistical-learning-method
python statistical-learning
Last synced: 30 days ago
JSON representation
《统计学习方法》笔记-基于Python算法实现
- Host: GitHub
- URL: https://github.com/wzyonggege/statistical-learning-method
- Owner: wzyonggege
- Created: 2017-12-28T03:21:08.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-09T02:12:01.000Z (almost 7 years ago)
- Last Synced: 2024-10-01T17:21:59.115Z (about 1 month ago)
- Topics: python, statistical-learning
- Language: Jupyter Notebook
- Homepage:
- Size: 211 KB
- Stars: 2,032
- Watchers: 70
- Forks: 670
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# statistical-learning-method
《统计学习方法》笔记-基于Python算法实现第一章 [最小二乘法](https://github.com/wzyonggege/statistical-learning-method/blob/master/LeastSquaresMethod/least_sqaure_method.ipynb)
第二章 [感知机](https://github.com/wzyonggege/statistical-learning-method/blob/master/Perceptron/Iris_perceptron.ipynb)
第三章 [k近邻法](https://github.com/wzyonggege/statistical-learning-method/blob/master/KNearestNeighbors/KNN.ipynb)
第四章 [朴素贝叶斯](https://github.com/wzyonggege/statistical-learning-method/blob/master/NaiveBayes/GaussianNB.ipynb)
第五章 [决策树](https://github.com/wzyonggege/statistical-learning-method/blob/master/DecisonTree/DT.ipynb)
第六章 [逻辑斯谛回归](https://github.com/wzyonggege/statistical-learning-method/blob/master/LogisticRegression/LR.ipynb)
第七章 [支持向量机](https://github.com/wzyonggege/statistical-learning-method/blob/master/SVM/support-vector-machine.ipynb)
第八章 [AdaBoost](https://github.com/wzyonggege/statistical-learning-method/blob/master/AdaBoost/Adaboost.ipynb)
第九章 [EM算法](https://github.com/wzyonggege/statistical-learning-method/blob/master/EM/em.ipynb)