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

22 lines
1.2 KiB
Markdown
Raw Normal View History

2018-11-16 00:23:54 +08:00
《统计学习方法》算法实现
====
2018-11-16 00:19:34 +08:00
2018-11-17 21:29:55 +08:00
力求每行代码都有注释,重要部分注明公式来源。让以后学习的人能走得更快。具体可能会追求下方这样的代码,学习的时候可以照着书本公式看程序,让代码有据可查。如果觉得可以的话,欢迎打个星,我将很受鼓舞。
2018-11-17 21:20:57 +08:00
![image](https://github.com/Dod-o/Statistical-Learning-Method_Code/blob/master/CodeScreenshots.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
2018-11-16 00:49:38 +08:00
##### 注其中Mnist数据集已转换为csv格式由于体积为107M超过限制改为压缩包形式。下载后务必先将Mnist文件内压缩包直接解压。
2018-11-16 00:19:34 +08:00
按书中章节顺序,目前已实现的章节有:
2018-11-16 00:23:54 +08:00
### 第二章 感知机:
2018-11-16 00:25:49 +08:00
[Statistical-Learning-Method_Code/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-16 21:49:53 +08:00
### 第三章 K邻近
2018-11-16 21:50:35 +08:00
[Statistical-Learning-Method_Code/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