赞
踩
本文介绍了机器学习中对于模型精度的描述,包括 True Positive, True Negative, False Positive 和 False Negative。
假设我们有一个预测模型,该模型的预测结果可能为 Positive 也可能为 Negative ,而真实的结果也可能存在 Positive 和 Negative 两种情况,根据模型预测结果与真实结果两两搭配即可得到以下表格:
预测结果 \ 真实结果 | Positive | Negative |
---|---|---|
Positive | True Positive | False Positive |
Negative | False Negative | True Negative |
总结来讲:
True/False + Positive/Negative
中的 True/False
是用来描述 预测结果跟真实结果是否相同的,后面的 Positive/Negative
是模型的预测结果。[1].Machine Learning Accuracy: True-False Positive/Negative [2024]
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。