Hi,
I would like to add new object classes (fruits and vegetables) to the standard YOLOv8m model. However, I do not want to replace the existing COCO classes — I want to retain all 80 COCO classes and simply add my custom objects.
What would be the best approach to achieve this?
- Cascading Networks: Use the standard YOLOv8m for COCO objects and a separately fine-tuned YOLOv8m for fruits and vegetables.
- Parallel Networks: Run both models in parallel and merge their results.
- Single Network: Fine-tune a YOLOv8m model on a combined dataset containing COCO 2017 + my custom dataset (fruits & vegetables).
Thanks in advance for your help!