[机器学习]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/)

相关推荐
新智元1 分钟前
不到 10 天,国产「香蕉」突袭!一次 7 图逼真还原,合成大法惊呆歪果仁
人工智能·openai
LaughingZhu26 分钟前
Product Hunt 每日热榜 | 2025-09-07
人工智能·经验分享·搜索引擎·产品运营
星马梦缘30 分钟前
Matlab机器人工具箱使用2 DH建模与加载模型
人工智能·matlab·机器人·仿真·dh参数法·改进dh参数法
中华小当家呐31 分钟前
算法之常见八大排序
数据结构·算法·排序算法
居然JuRan1 小时前
从零开始学大模型之预训练语言模型
人工智能
沐怡旸1 小时前
【算法--链表】114.二叉树展开为链表--通俗讲解
算法·面试
martinzh1 小时前
向量化与嵌入模型:RAG系统背后的隐形英雄
人工智能
新智元1 小时前
学哲学没出路?不好意思,现在哲学就业碾压 CS!
人工智能·openai
AI码上来2 小时前
当小智 AI 遇上数字人,我用 WebRTC 打造实时音视频应用
人工智能·webrtc·实时音视频
一只懒洋洋2 小时前
K-meas 聚类、KNN算法、决策树、随机森林
算法·决策树·聚类