KNN
摘要:
```
# ==========k最近邻分类=========
import numpy as np # 快速操作结构数组的工具
from sklearn.neighbors import KNeighborsClassifier, KDTree # 导入knn分类器 # 数据集。4种属性,3种类别
data = [ [5.1, 3.5, 1.4, 0.2, 0], [4.9... 阅读全文
posted @ 2019-07-23 14:57 Indian_Mysore 阅读(110) 评论(0) 推荐(0) 编辑