You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For a new max epoch run, is there any recommendation for setting epoch related values like: flat_epoch, no_aug_epoch, policy epoch, mixup epoch and stop epoch?
Thank you very much for your interest and attention to our work. If you like what we’ve done, please consider giving this repo a star.
The issue you mentioned is actually quite simple. Assuming the total training epochs are 50:
The first 4 epochs are for data augmentation warmup.
Half of the epochs are used for dense one-to-one (o2o), i.e., 50/2 = 25.
The flat epoch is the sum of data augmentation warmup and dense o2o, i.e., 25 + 4 = 29.
In D-FINE, 8 epochs are used for searching EMA, so we follow this setting. As a result, no_aug_epoch = 8, and stop_epoch = 50.
The policy is epochs@[4, 29, 50].
I hope this helps you better understand our work!
For a new max epoch run, is there any recommendation for setting epoch related values like: flat_epoch, no_aug_epoch, policy epoch, mixup epoch and stop epoch?
The text was updated successfully, but these errors were encountered: