标签:不同 内容 公式 port 假设 平均值 learn 计算 details
from sklearn.metrics import f1_score # 导入f1_score
f1_score(y_test,y_predict, average=‘micro‘) # 调用并输出计算的值
f1_score(y_test,y_predict, average=‘macro‘)
其中
f1_score = (2 * Recall * Presision) / (Recall + Presision)
假设Recall 与 Presision 的权重一样大, 求得的两个值的加权平均书
导入: from sklearn.metrics import f1_score
其中:average 的取值:
详细内容参考: https://blog.csdn.net/weixin_46072771/article/details/105757363
标签:不同 内容 公式 port 假设 平均值 learn 计算 details
原文地址:https://www.cnblogs.com/wangxiaowu/p/13292156.html