Chris-hughes10 / Yolov7-training

A clean, modular implementation of the Yolov7 model family, which uses the official pretrained weights, with utilities for training the model on custom (non-COCO) tasks.
GNU General Public License v3.0
116 stars 35 forks source link

annotated data format #16

Closed nahidalam closed 1 year ago

nahidalam commented 1 year ago

I was looking into your blog post and the codebase here. Your annotation file is a .csv. Which format is this annotated? COCO format or yolo format?

Chris-hughes10 commented 1 year ago

Hi, the csv file has annotations in xyxy format. The way that we have approached this in the blog post is that your dataset adaptor should return xyxy boxes, so that it works cleanly with all of the augmentations, and then it will be converted to yolo format by the Yolov7Dataset.

Hope this helps!