文件名称:machine-learning-snippets:机器学习的代码片段
文件大小:2KB
文件格式:ZIP
更新时间:2024-04-23 08:23:12
Python
机器学习片段 explain_binary_results 用法 y_test = np . array ([ 0 , 0 , 0 , 1 , 1 , 1 , 1 , 0 ]) y_pred = np . array ([ 0 , 1 , 1 , 1 , 0 , 1 , 0 , 1 ]) explain_binary_classification ( y_pred , y_test , 'fraud' ) 输出 Predicted not fraud fraud Actual not fraud 1 3 fraud 2 2 * False positive rate is 75.00%: among all 4 cases of actual
【文件预览】:
machine-learning-snippets-main
----explain_binary_results.py(3KB)
----README.md(837B)