yolov5_obb
yolov5_obb copied to clipboard
Hyperparameter Configuration and Difficulty level
- I am working on object detection using aerial images
- Developed the code using the described process but the results are not promising.
- Few queries are requested to be clarified: a) What is the 'difficult' parameter in the annotation format? And how does it affect performance? b) What should be the minimum number of images used to train each class? c) Within the hyperparemeter 'yaml file', how do we choose each parameter for better training?
Please Help! Thanks in advance.
The "hyp.finetune_dota_CloseAug.yaml" file seems to work better than the "hyp.finetune_dota.yaml" file. Please Help!
During the training process, the calibration object with difficult=1 will be ignored directly
During the training process, the calibration object with difficult=1 will be ignored directly
This is incorrect. Objects with difficult=2 are ignored, as evidenced here:
if label[-1] == "2": # diffcult
continue