How to use yolo training coco dataset + custom data together

Viewed 12

I want to train yolov5 by combining the coco dataset and the custom dataset created with roboflow. How do I merge datasets?

1 Answers

can I ask why you’re looking to combine the two?

Are you just wanting to do Transfer Learning to accelerate your model training and inference performance? If that’s the case, you can just use Train From Checkpoint, with Roboflow Train, and use the COCO checkpoint - https://docs.roboflow.com/train

Otherwise, is your goal to detect your custom classes alongside all of the classes in COCO?

Related