Skip to content

Commit 6387ccb

Browse files
committed
更新了部分文档
1 parent 8a7710b commit 6387ccb

File tree

4 files changed

+26
-2
lines changed

4 files changed

+26
-2
lines changed

Day71-80/71.人工智能和机器学习概述.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,5 +119,12 @@ $$
119119
5. 测试算法
120120
6. 应用算法
121121

122-
###
122+
### Scikit-learn介绍
123123

124+
![](res/scikit-learn-logo.png)
125+
126+
Scikit-learn源于Google Summer of Code项目,由David Cournapeau在2007年发起,它提供了机器学习可能用到的工具,包括数据预处理、监督学习(分类、回归)、非监督学习(聚类)、模型选择、降维等。
127+
128+
官网地址:<https://scikit-learn.org/stable/index.html>
129+
130+
安装方法:`pip install scikit-learn`

Day71-80/72.k最近邻分类.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,20 @@ k值的选择对于kNN算法的结果有非常显著的影响。下面用李航
2020

2121
实际应用中,$k$的取值通常都比较小,可以通过交叉检验的方式来选择较好的$k$值。
2222

23+
24+
25+
### 算法优缺点
26+
27+
优点:
28+
29+
1. 简单有效
30+
2. 重新训练代价低
31+
3. 适合类域交叉样本
32+
4. 适合大样本分类
33+
34+
缺点:
35+
36+
1. 惰性学习
37+
2. 输出的可解释性不强
38+
3. 不擅长处理不均衡样本
39+
4. 计算量比较大

Day71-80/res/scikit-learn-logo.png

7.86 KB
Loading

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ Python在以下领域都有用武之地。
377377

378378
#### Day80 - [推荐系统实战](./Day71-90/80.推荐系统实战.md)
379379

380-
### Day81~90 - 大数据分析实战
380+
### Day81~90 - [大数据分析实战](./Day81-90)
381381

382382
### Day91~100 - [团队项目开发](./Day91-100)
383383

0 commit comments

Comments
 (0)