赞
踩
下面会用到修改权重:
import pandas as pd #接下来就是如何算4个指标 fp tp fn tn # 假正类(False Positive,FP):将负类预测为正类 fp_filter = (predictions == 1) & (loans["loan_status"] == 0) fp = len(predictions[fp_filter]) print(fp) print("----------------------------------------") # 真正类(True Positive,TP):将正类预测为正类 tp_filter = (predictions == 1) & (loans["loan_status"] == 1) tp = len(predictions[tp_filter]) print(tp) print("----------------------------------------") # 假负类(False Negative,FN):将正类预测为负类 fn_filter = (predictions == 0) & (loans["loan_status"] == 1) fn = len(predictions[fn_filter]) print(fn) print("----------------------------------------") # 真负类(True Negative,TN):将负类预测为负类 tn_filter = (predictions == 0) & (loans["loan_status"
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。