yolov5_obb icon indicating copy to clipboard operation
yolov5_obb copied to clipboard

Hyperparameter Configuration and Difficulty level

Open glenbhermon opened this issue 2 years ago • 3 comments

  1. I am working on object detection using aerial images
  2. Developed the code using the described process but the results are not promising.
  3. 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?

Result

Please Help! Thanks in advance.

glenbhermon avatar Nov 24 '22 12:11 glenbhermon

The "hyp.finetune_dota_CloseAug.yaml" file seems to work better than the "hyp.finetune_dota.yaml" file. Please Help!

glenbhermon avatar Nov 25 '22 04:11 glenbhermon

During the training process, the calibration object with difficult=1 will be ignored directly

checker999 avatar Dec 03 '22 00:12 checker999

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

davidsvy avatar Nov 10 '23 14:11 davidsvy