Replies: 2 comments 1 reply
-
👋 Hello @KDeser, thank you for sharing your thoughts and contributing to the Ultralytics project 🚀! We understand the challenges that arise when dealing with small objects during training and appreciate your suggestions for handling this issue. Resizing and bounding box handling are crucial for improving model performance. If this is a ❓ Question or Feature Request, please feel free to elaborate further on your use case or share any specific examples/insights so we can better understand your needs. To explore potential solutions, make sure to check out our Docs for training tips and preprocessing techniques. For custom training specifics, verify that you're following our Tips for Best Training Results, which might include strategies related to small object detection. UpgradeBefore proceeding further, ensure you’ve upgraded to the latest version of the pip install -U ultralytics Community ResourcesWe also encourage you to connect with the Ultralytics community to discuss ideas and gather feedback: Training EnvironmentsYOLO can be run on various verified environments, including:
StatusWhen this badge is green, all Ultralytics CI tests are passing, verifying the correct operation of YOLO across all platforms. This is an automated response, but an Ultralytics engineer will review your discussion and provide further assistance soon. Thank you for your patience 😊! |
Beta Was this translation helpful? Give feedback.
-
@KDeser to address small object challenges during training, you can increase the |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Sometimes objects can be collapsed down to almost nothing when resizing large images for training. This is problematic and leads to poor performance because the model attempts to learn from these tiny smudges of pixels.
I suggest implementing some logic within the data loader that removes labels where the bboxes are below a certain size, or crops the image so that the objects remain larger.
Beta Was this translation helpful? Give feedback.
All reactions