Fine Grained object detection #8592
Replies: 1 comment
-
@deepukr007 absolutely, YOLOv8 can be a solid choice for your fine-grained object detection task, including detecting small birds and classifying them by species. For enhanced performance on such specific tasks, consider the following tips:
Here's a simple example to start training with custom configurations: yolo detect train data=your_dataset.yaml model=yolov8n.yaml imgsz=640 epochs=100 Remember, the key is in the data and fine-tuning the model to your specific needs. Good luck with your bird detection project! 🐦 |
Beta Was this translation helpful? Give feedback.
-
I want to train an object detecor for detecting small birds and also classifying the birds to its species. Yolov8 is definitely a great choice and I am sure it works well with small object detection like detecting birds but I think it will fail to detect birds when the task to detect birds with species. What should I do in this case ? Is there any way to tackle this problem ?
Beta Was this translation helpful? Give feedback.
All reactions