Statistical-Learning-Method.../README.md

95 lines
5.3 KiB
Markdown
Raw Normal View History

2018-11-17 21:47:56 +08:00
前言
2018-11-16 00:23:54 +08:00
====
2018-11-16 00:19:34 +08:00
2018-11-17 21:41:39 +08:00
力求每行代码都有注释,重要部分注明公式来源。具体会追求下方这样的代码,学习者可以照着公式看程序,让代码有据可查。
2018-11-17 21:30:09 +08:00
2018-11-17 21:33:39 +08:00
![image](https://github.com/Dod-o/Statistical-Learning-Method_Code/blob/master/CodePic.png)
2018-11-16 00:19:34 +08:00
2018-11-17 21:29:55 +08:00
如果时间充沛的话,可能会试着给每一章写一篇博客。先放个博客链接吧:[传送门](http://www.pkudodo.com/)。
2018-11-16 00:19:34 +08:00
2021-01-27 21:00:44 +08:00
##### 注其中Mnist数据集已转换为csv格式由于体积为107M超过限制改为压缩包形式。下载后务必先将Mnist文件内压缩包直接解压。
2022-02-12 19:09:56 +08:00
### 【Updates】
**书籍出版**:目前已与**人民邮电出版社**签订合同未来将结合该repo整理出版机器学习实践相关书籍。同时会在book分支中对代码进行重构欢迎在issue中提建议同时issue中现有的问题也会考虑进去。Feb 12 2022
2022-02-12 20:16:39 +08:00
**线下培训**:女朋友计划近期开办**ML/MLP/CV线下培训班**,地点**北上广深杭**,目标各方向**快速入门**正在筹备。这里帮她打个广告可以添加微信15324951814备注线下培训。本人也会被拉过去义务评估课程质量。。。Feb 12 2022
2022-02-12 19:09:56 +08:00
**无监督部分更新**:部分**无监督**算法已更新!!! 该部分由[Harold-Ran](https://github.com/Harold-Ran)提供,在此感谢! 有其他算法补充的同学也欢迎添加我微信并prJan 27 2021
2018-11-17 21:48:41 +08:00
2018-11-17 21:47:56 +08:00
实现
======
2018-11-16 00:19:34 +08:00
2021-01-27 21:00:44 +08:00
## 监督部分
2018-11-16 00:23:54 +08:00
### 第二章 感知机:
2018-11-27 18:37:41 +08:00
博客:[统计学习方法|感知机原理剖析及实现](http://www.pkudodo.com/2018/11/18/1-4/)
实现:[perceptron/perceptron_dichotomy.py](https://github.com/Dod-o/Statistical-Learning-Method_Code/blob/master/perceptron/perceptron_dichotomy.py)
2018-11-16 00:19:34 +08:00
2018-11-17 21:41:39 +08:00
### 第三章 K近邻
2018-11-27 18:37:41 +08:00
博客:[统计学习方法|K近邻原理剖析及实现](http://www.pkudodo.com/2018/11/19/1-2/)
实现:[KNN/KNN.py](https://github.com/Dod-o/Statistical-Learning-Method_Code/blob/master/KNN/KNN.py)
2018-11-16 21:49:53 +08:00
2018-11-17 21:41:39 +08:00
### 第四章 朴素贝叶斯:
2018-11-27 18:37:41 +08:00
博客:[统计学习方法|朴素贝叶斯原理剖析及实现](http://www.pkudodo.com/2018/11/21/1-3/)
实现:[NaiveBayes/NaiveBayes.py](https://github.com/Dod-o/Statistical-Learning-Method_Code/blob/master/NaiveBayes/NaiveBayes.py)
2018-11-21 11:15:14 +08:00
### 第五章 决策树:
2018-11-30 19:32:51 +08:00
博客:[统计学习方法|决策树原理剖析及实现](http://www.pkudodo.com/2018/11/30/1-5/)
2018-11-27 18:37:41 +08:00
实现:[DecisionTree/DecisionTree.py](https://github.com/Dod-o/Statistical-Learning-Method_Code/blob/master/DecisionTree/DecisionTree.py)
2018-12-03 13:32:27 +08:00
### 第六章 逻辑斯蒂回归与最大熵模型:
2018-12-03 20:32:47 +08:00
博客:逻辑斯蒂回归:[统计学习方法|逻辑斯蒂原理剖析及实现](http://www.pkudodo.com/2018/12/03/1-6/)
2018-12-05 16:11:56 +08:00
博客:最大熵:[统计学习方法|最大熵原理剖析及实现](http://www.pkudodo.com/2018/12/05/1-7/)
2018-12-03 13:33:17 +08:00
实现:逻辑斯蒂回归:[Logistic_and_maximum_entropy_models/logisticRegression.py](https://github.com/Dod-o/Statistical-Learning-Method_Code/blob/master/Logistic_and_maximum_entropy_models/logisticRegression.py)
实现:最大熵:[Logistic_and_maximum_entropy_models/maxEntropy.py](https://github.com/Dod-o/Statistical-Learning-Method_Code/blob/master/Logistic_and_maximum_entropy_models/maxEntropy.py)
2018-12-03 13:32:27 +08:00
2018-12-16 18:29:43 +08:00
### 第七章 支持向量机:
博客:[统计学习方法|支持向量机(SVM)原理剖析及实现](http://www.pkudodo.com/2018/12/16/1-8/)
2018-12-03 13:32:27 +08:00
实现:[SVM/SVM.py](https://github.com/Dod-o/Statistical-Learning-Method_Code/blob/master/SVM/SVM.py)
2018-12-05 00:06:04 +08:00
### 第八章 提升方法:
实现:[AdaBoost/AdaBoost.py](https://github.com/Dod-o/Statistical-Learning-Method_Code/blob/master/AdaBoost/AdaBoost.py)
2018-12-08 22:23:27 +08:00
### 第九章 EM算法及其推广
实现:[EM/EM.py](https://github.com/Dod-o/Statistical-Learning-Method_Code/blob/master/EM/EM.py)
2018-12-10 12:14:47 +08:00
### 第十章 隐马尔可夫模型:
实现:[HMM/HMM.py](https://github.com/Dod-o/Statistical-Learning-Method_Code/blob/master/HMM/HMM.py)
2019-08-24 11:12:48 +08:00
2021-01-27 21:00:44 +08:00
## 无监督部分
### 第十四章 聚类方法
实现:[K-means_Clustering.py](https://github.com/Dod-o/Statistical-Learning-Method_Code/blob/master/Clustering/K-means_Clustering/K-means_Clustering.py)
2021-01-27 21:23:48 +08:00
2021-01-27 21:00:44 +08:00
实现:[Hierachical_Clustering.py](https://github.com/Dod-o/Statistical-Learning-Method_Code/blob/master/Clustering/Hierachical_Clustering/Hierachical_Clustering.py)
### 第十六章 主成分分析
实现:[PCA.py](https://github.com/Dod-o/Statistical-Learning-Method_Code/blob/master/PCA/PCA.py)
### 第十七章 潜在语意分析
实现:[LSA.py](https://github.com/Dod-o/Statistical-Learning-Method_Code/blob/master/LSA/LSA.py)
### 第十八章 概率潜在语意分析
实现:[PLSA.py](https://github.com/Dod-o/Statistical-Learning-Method_Code/blob/master/PLSA/PLSA.py)
### 第二十章 潜在狄利克雷分配
实现:[LDA.py](https://github.com/Dod-o/Statistical-Learning-Method_Code/blob/master/LDA/LDA.py)
### 第二十一章 PageRank算法
实现:[Page_Rank.py](https://github.com/Dod-o/Statistical-Learning-Method_Code/blob/master/Page_Rank/Page_Rank.py)
2019-08-24 11:12:48 +08:00
联系
======
2021-01-27 21:00:44 +08:00
欢迎pr有疑问也可通过issue、微信或邮件联系。
2019-08-24 11:14:18 +08:00
此外如果有需要**MSRA**实习内推的同学,欢迎骚扰。
2019-08-24 11:12:48 +08:00
**Wechat:** lvtengchao备注“blog-学校/单位-姓名”)
**Email:** lvtengchao@pku.edu.cn