把confusion_matrix函数的python代码给我
时间: 2023-06-09 10:07:15 浏览: 99
详解使用python绘制混淆矩阵(confusion_matrix)
3星 · 编辑精心推荐
以下是confusion_matrix函数的Python代码:
```python
from sklearn.metrics import confusion_matrix
y_true = [0, 1, 0, 1, 0, 1, 0, 1]
y_pred = [0, 1, 1, 1, 0, 0, 1, 0]
confusion_matrix = confusion_matrix(y_true, y_pred)
print(confusion_matrix)
```
这段代码使用了scikit-learn库中的confusion_matrix函数,接收两个参数:真实标签和预测标签,并返回混淆矩阵。最后通过print函数输出混淆矩阵。
阅读全文