I am training a YOLO for thermal images. I don't want to augment the color when training. What should I do to turn it off?
Thanks for your help.
Hello @toilahung, thank you for your interest in our work! Please visit our Custom Training Tutorial to get started, and see our Jupyter Notebook , Docker Image, and Google Cloud Quickstart Guide for example environments.
If this is a bug report, please provide screenshots and minimum viable code to reproduce your issue, otherwise we can not help you.
If this is a custom model or data training question, please note Ultralytics does not provide free personal support. As a leader in vision ML and AI, we do offer professional consulting, from simple expert advice up to delivery of fully customized, end-to-end production solutions for our clients, such as:
For more information please visit https://www.ultralytics.com.
Or you can change hyperparameters file,
https://github.com/ultralytics/yolov5/blob/7220cee1d1dc1f14003dbf8d633bbb76c547000c/data/hyp.finetune.yaml#L27
hsv_h: 0
hsv_s: 0
hsv_v: 0
That's helpful. thank you!
Or you can change hyperparameters file,
https://github.com/ultralytics/yolov5/blob/7220cee1d1dc1f14003dbf8d633bbb76c547000c/data/hyp.finetune.yaml#L27hsv_h: 0
hsv_s: 0
hsv_v: 0
This is the best-practices solution.
@topiaruss
How to get the output thermal diagram?
Can you teach me the specific operation?
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Turn off Hue, Saturation and exposure .
You can find it in the _YOLO cfg_ file
Most helpful comment
Or you can change hyperparameters file,
https://github.com/ultralytics/yolov5/blob/7220cee1d1dc1f14003dbf8d633bbb76c547000c/data/hyp.finetune.yaml#L27
hsv_h: 0
hsv_s: 0
hsv_v: 0