Replies: 2 comments 10 replies
|
👋 Hello @tedo001, thank you for your interest in Ultralytics 🚀! This is an automated response to help get things moving quickly, and an Ultralytics engineer will also assist you soon. UpgradeUpgrade to the latest pip install -U ultralyticsEnvironmentsYOLO may be run in any of the following up-to-date verified environments (with all dependencies including CUDA/CUDNN, Python and PyTorch preinstalled):
Status
|
|
A few concrete things that actually move the needle: Small objects: bump Augmentations for real-world deployment: keep mosaic on, but lower Transfer learning: yes, always start from COCO pretrained. If you have less than roughly 500 images per class, freeze the backbone for the first 20 epochs using False positives: first check what they actually look like visually. If they're structurally similar to your positives, you need hard negatives in the training set. Run inference on your val set, pull the false positives, label them correctly (or as background), and fold them back in. Adjusting the confidence threshold at inference time helps short-term but does not fix the root cause. |
Uh oh!
There was an error while loading. Please reload this page.
Hello Ultralytics Team and Community,
I’m currently working on a custom object detection project using YOLO and wanted some guidance regarding improving model accuracy.
Current Setup:
Dataset: Custom labeled images
Model: YOLOv8 / YOLO11
Training Epochs: 100
Image Size: 640
Hardware: GPU / Local PC
Questions:
What are the best augmentation settings for improving real-world detection?
How can I improve small object detection performance?
Is transfer learning recommended for niche datasets?
Any tips for reducing false positives?
Goal:
I want to deploy this model into a real-world application with high speed and good precision.
All reactions