随机森林、数据集划分、准确率、混淆矩阵(Python实现)
目录
0 今日目标
1 随机森林(RandomForestClassifier)
1.1 案例1
1.2 案例2
2 数据集划分(train_test_split)
3 准确率 (accuracy_score)
4 混淆矩阵 (confusion_matrix )
4.1 混淆矩阵
4.2 举例说明
4.3 参数说明
4.4 案例
致谢
0 今日目标
from sklearn.ensemble import RandomForestClassifier #随机森林
from sklearn.model_selection import train_test_split #数据集划分
from sklearn.metrics import accuracy_score #准确率
from sklearn.metrics import confusion_matrix #混淆矩阵
1 随机森林(RandomForestClassifier)
1.1 案例1
#=========导包=====
共有 0 条评论