YOLOv8使用COCO评测,解决AssertionError: Results do not correspond to current coco set.

本文主要是介绍YOLOv8使用COCO评测,解决AssertionError: Results do not correspond to current coco set.,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

YOLO评测指标和COCO评测指标还是有些区别的,通过数据表明YOLO评测指标要比COCO评测指标高2,3个点都是正常的。
跟着流程走吧!!

yolo设置

yolo.eval()评估的时候,需要设置save_json = True保存结果json文件

model = YOLO("weight/best.pt")
model.val(data="data.yaml",imgsz=640, save_json=True)

结果默认保存在runs/detect/val/predictions.json

Id转化

coco格式id是从0-n,一个序列。而yolo的id是文件名称,字符。需要借助标签文件进行映射,写到新文件中

def cover_pred_json_id(anno_json_path, pred_json_path):with open(anno_json_path, "r") as f:ann_json = json.load(f)with open(pred_json_path, "r") as f:pred_json = json.load(f)for pred_item in pred_json:img_id = pred_item["image_id"]ann_id = [ann_item["id"] for ann_item in ann_json["images"] if ann_item["file_name"][:-4] == img_id]try:pred_item["image_id"] = ann_id[0]except IndexError:print(img_id)out_json_path = os.path.join(os.path.dirname(pred_json_path),"newpred.json")with open(out_json_path, 'w') as file:json.dump(pred_json, file, indent=4)return out_json_path

评测

完整代码


def parse_opt():parser = argparse.ArgumentParser()parser.add_argument('--anno_json', type=str, default='datasets/annotations/instances_val2017.json', help='training model path')parser.add_argument('--pred_json', type=str, default='utils/json_files/newcocopred.json', help='data yaml path')return parser.parse_known_args()[0]def cover_pred_json_id(anno_json_path, pred_json_path):with open(anno_json_path, "r") as f:ann_json = json.load(f)with open(pred_json_path, "r") as f:pred_json = json.load(f)for pred_item in pred_json:img_id = pred_item["image_id"]ann_id = [ann_item["id"] for ann_item in ann_json["images"] if ann_item["file_name"][:-4] == img_id]try:pred_item["image_id"] = ann_id[0]except IndexError:print(img_id)out_json_path = os.path.join(os.path.dirname(pred_json_path),"newpred.json")with open(out_json_path, 'w') as file:json.dump(pred_json, file, indent=4)return out_json_pathif __name__ == '__main__':opt = parse_opt()anno_json = opt.anno_jsonpred_json = opt.pred_jsonpred_json = cover_pred_json_bbox(anno_json, pred_json) # cover yolo id to coco idanno = COCO(anno_json)  # init annotations apiprint(pred_json)pred = anno.loadRes(pred_json)  # init predictions apieval = COCOeval(anno, pred, 'bbox')eval.evaluate()eval.accumulate()eval.summarize()

如果不出意外的话,会正确打印结果:
coco result

错误

  1. 如果出现评测指标为0的时候,说明category_id都没对应上,coco是从1开始计算, 而yolo是0开始
    更改ultralytics/models/yolo/detect/val.py设置self.is_coco = True
    def init_metrics(self, model):"""Initialize evaluation metrics for YOLO."""val = self.data.get(self.args.split, "")  # validation pathself.is_coco = True # isinstance(val, str) and "coco" in val and val.endswith(f"{os.sep}val2017.txt")  # is COCOself.class_map = converter.coco80_to_coco91_class() if self.is_coco else list(range(1000))self.args.save_json |= self.is_coco  # run on final val if training COCOself.names = model.namesself.nc = len(model.names)self.metrics.names = self.namesself.metrics.plot = self.args.plotsself.confusion_matrix = ConfusionMatrix(nc=self.nc, conf=self.args.conf)self.seen = 0self.jdict = []self.stats = dict(tp=[], conf=[], pred_cls=[], target_cls=[])
  1. 如果出现AssertionError: Results do not correspond to current coco set的错误通常是预测文件和标签中的id值不对应,这时候就要查看预测的文件中是不是少了或者多了哪个文件。

这篇关于YOLOv8使用COCO评测,解决AssertionError: Results do not correspond to current coco set.的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1036753

相关文章

使用SpringBoot+InfluxDB实现高效数据存储与查询

《使用SpringBoot+InfluxDB实现高效数据存储与查询》InfluxDB是一个开源的时间序列数据库,特别适合处理带有时间戳的监控数据、指标数据等,下面详细介绍如何在SpringBoot项目... 目录1、项目介绍2、 InfluxDB 介绍3、Spring Boot 配置 InfluxDB4、I

使用Java读取本地文件并转换为MultipartFile对象的方法

《使用Java读取本地文件并转换为MultipartFile对象的方法》在许多JavaWeb应用中,我们经常会遇到将本地文件上传至服务器或其他系统的需求,在这种场景下,MultipartFile对象非... 目录1. 基本需求2. 自定义 MultipartFile 类3. 实现代码4. 代码解析5. 自定

使用Python实现无损放大图片功能

《使用Python实现无损放大图片功能》本文介绍了如何使用Python的Pillow库进行无损图片放大,区分了JPEG和PNG格式在放大过程中的特点,并给出了示例代码,JPEG格式可能受压缩影响,需先... 目录一、什么是无损放大?二、实现方法步骤1:读取图片步骤2:无损放大图片步骤3:保存图片三、示php

使用Python实现一个简易计算器的新手指南

《使用Python实现一个简易计算器的新手指南》计算器是编程入门的经典项目,它涵盖了变量、输入输出、条件判断等核心编程概念,通过这个小项目,可以快速掌握Python的基础语法,并为后续更复杂的项目打下... 目录准备工作基础概念解析分步实现计算器第一步:获取用户输入第二步:实现基本运算第三步:显示计算结果进

python之uv使用详解

《python之uv使用详解》文章介绍uv在Ubuntu上用于Python项目管理,涵盖安装、初始化、依赖管理、运行调试及Docker应用,强调CI中使用--locked确保依赖一致性... 目录安装与更新standalonepip 安装创建php以及初始化项目依赖管理uv run直接在命令行运行pytho

MySQ中出现幻读问题的解决过程

《MySQ中出现幻读问题的解决过程》文章解析MySQLInnoDB通过MVCC与间隙锁机制在可重复读隔离级别下解决幻读,确保事务一致性,同时指出性能影响及乐观锁等替代方案,帮助开发者优化数据库应用... 目录一、幻读的准确定义与核心特征幻读 vs 不可重复读二、mysql隔离级别深度解析各隔离级别的实现差异

C#使用Spire.XLS快速生成多表格Excel文件

《C#使用Spire.XLS快速生成多表格Excel文件》在日常开发中,我们经常需要将业务数据导出为结构清晰的Excel文件,本文将手把手教你使用Spire.XLS这个强大的.NET组件,只需几行C#... 目录一、Spire.XLS核心优势清单1.1 性能碾压:从3秒到0.5秒的质变1.2 批量操作的优雅

Kotlin 枚举类使用举例

《Kotlin枚举类使用举例》枚举类(EnumClasses)是Kotlin中用于定义固定集合值的特殊类,它表示一组命名的常量,每个枚举常量都是该类的单例实例,接下来通过本文给大家介绍Kotl... 目录一、编程枚举类核心概念二、基础语法与特性1. 基本定义2. 带参数的枚举3. 实现接口4. 内置属性三、

Java List 使用举例(从入门到精通)

《JavaList使用举例(从入门到精通)》本文系统讲解JavaList,涵盖基础概念、核心特性、常用实现(如ArrayList、LinkedList)及性能对比,介绍创建、操作、遍历方法,结合实... 目录一、List 基础概念1.1 什么是 List?1.2 List 的核心特性1.3 List 家族成

Go语言使用Gin处理路由参数和查询参数

《Go语言使用Gin处理路由参数和查询参数》在WebAPI开发中,处理路由参数(PathParameter)和查询参数(QueryParameter)是非常常见的需求,下面我们就来看看Go语言... 目录一、路由参数 vs 查询参数二、Gin 获取路由参数和查询参数三、示例代码四、运行与测试1. 测试编程路