-
Hi! I have trained yolo11m.pt for my custom objects but I'm facing some issues during validation. I implement the aggressive augmentation settings during the model training. However, I don't want to use it for the calculation of the validation metrics. I tried to switch it off with the 'augment=False' setting. But the augmentation is still implemented.
Any ideas how to turn of the augmentation for the validation? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
👋 Hello @NS-Nik, thank you for reaching out to the Ultralytics community 🚀! Your issue with disabling augmentation during validation is a valuable topic. We invite you to explore our Docs where you might find insight into validation settings. Specifically, our Python Usage guide could be of assistance for similar issues. If this is a 🐛 Bug Report, please help us by providing a minimum reproducible example, which will assist in debugging the situation more efficiently. Moreover, if you have custom training ❓ questions, please share detailed information, including dataset samples and training logs. Double-check to ensure you're following the guidelines in our Tips for Best Training Results. To engage with the community, consider joining our Discord 🎧 for real-time interactions, or for deeper dives, tap into our Discourse or our Subreddit to fellowship with other members. UpgradeTo ensure you’re running the latest version, upgrade the pip install -U ultralytics EnvironmentsYour YOLO model can operate in verified environments offering a range of dependencies:
StatusThis badge displays the status of Ultralytics CI, which confirms the operation of all YOLO Modes and Tasks across multiple OS environments. Don't worry, this is an automated response 🤖, but rest assured, an Ultralytics engineer will be here to assist you further soon! |
Beta Was this translation helpful? Give feedback.
-
@NS-Nik hi! To ensure no augmentation is applied during validation, confirm that the validation function is correctly configured without any augmentation settings in your YAML or script. Also, check that there are no residual augmentation parameters overriding your |
Beta Was this translation helpful? Give feedback.
-
HI! @glenn-jocher Thank you for the help! |
Beta Was this translation helpful? Give feedback.
Augmentation isn't used during validation and the
augment
parameter is only for prediction, to answer your other points.