[机器学习]False Positive和False Negative

一、简介

本文介绍了机器学习中对于模型精度的描述,包括 True Positive, True Negative, False Positive 和 False Negative。

二、什么是True/False + Positive/Negative

假设我们有一个预测模型,该模型的预测结果 可能为 Positive 也可能为 Negative ,而真实的结果 也可能存在 Positive 和 Negative 两种情况,根据模型预测结果真实结果两两搭配即可得到以下表格:

预测结果 \ 真实结果 Positive Negative
Positive True Positive False Positive
Negative False Negative True Negative

总结来讲:

  • True Positive: 模型预测为 Positive 并且真实情况也为 Positive;
  • False Positive: 模型预测为 Positive 但是真实情况为 Negative;
  • False Negative: 模型预测为 Negative 但是真实情况为 Positive;
  • True Negative: 模型预测为 Negative 并且真实情况也为 Negative;
    因此: True/False + Positive/Negative 中的 True/False 是用来描述 预测结果跟真实结果是否相同的,后面的 Positive/Negative 是模型的预测结果。

三、参考

1\].[Machine Learning Accuracy: True-False Positive/Negative \[2024\]](https://research.aimultiple.com/machine-learning-accuracy/)

相关推荐
剪一朵云爱着11 分钟前
PAT 1065 A+B and C (64bit)
算法·pat考试
GoGeekBaird18 分钟前
GoHumanLoopHub开源上线,开启Agent人际协作新方式
人工智能·后端·github
Jinkxs27 分钟前
测试工程师的AI转型指南:从工具使用到测试策略重构
人工智能·重构
喜欢吃燃面33 分钟前
C++算法竞赛:位运算
开发语言·c++·学习·算法
别惹CC40 分钟前
Spring AI 进阶之路01:三步将 AI 整合进 Spring Boot
人工智能·spring boot·spring
项目申报小狂人44 分钟前
算法应用上新!自适应更新策略差分进化算法求解球形多飞行器路径规划问题,附完整MATLAB代码
开发语言·算法·matlab
stbomei3 小时前
当 AI 开始 “理解” 情感:情感计算技术正在改写人机交互规则
人工智能·人机交互
PAK向日葵7 小时前
【算法导论】PDD 0817笔试题题解
算法·面试
Moshow郑锴8 小时前
人工智能中的(特征选择)数据过滤方法和包裹方法
人工智能