当前位置:   article > 正文

YOLOV8:FileNotFoundError: train: No labels found in_yolov8:filenotfounderror: train: no labels found i

yolov8:filenotfounderror: train: no labels found in

在训练YOLOv8的时候遇见报错:

YOLOV8:FileNotFoundError: train: No labels found in........./JPEGImages.cache,can not start training.

解决方案:

若数据集结构与我的相同的话

 

其中JPEGImages是你数据集的图片,则可以按照我的方式修改......

在ultralytics/yolo/data这个目录下找到utils.py文件,并按照下图修改,修改内容为:

  1. def img2label_paths(img_paths):
  2. """Define label paths as a function of image paths."""
  3. sa, sb = f'{os.sep}JPEGImages{os.sep}', f'{os.sep}labels{os.sep}'
  4. return [sb.join(x.rsplit(sa, 1)).rsplit('.', 1)[0] + '.txt' for x in img_paths]

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/618034
推荐阅读
相关标签
  

闽ICP备14008679号