-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
High Confidence Loss on first epoch #175
Comments
@mlpotter this high conf loss is created on purpose, as the conf loss is multiplied by 64 in the compute_loss() function. This was done as the result of a hyperparameter search from a few months ago #2 (comment), though this was done on the incorrect mAP metric used back then, so it should probably be redone. cls loss is also divided by 4, so the natural conf and cls losses at epoch 0 batch 0 are really about 2 and 12 rather than 139 and 3.29. You can run your own evaluation of these loss component weights, or reset them to 1 (which would align more closely with the darknet loss function as I understand it), but in our tests we saw much worse results this way. Lines 264 to 277 in 09b02d2
|
Is a high confidence loss for a new dataset to be expected on the first epoch?
The text was updated successfully, but these errors were encountered: