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
I'm training from scratch of EfficientDet-d0 on a dataset which contains 600 images to recognize insulators, which is the only one class. However, when I was both training and evaluating, the Reg loss keeps zero, and the Cls loss first declines then increases and then declines rapidly. Cannot figure out what's happening, is it for lack of data and overfitting happens? But will it bring zero Reg loss? After all, I'm using the minimum version of EfficientDet. Any help, plz!
The text was updated successfully, but these errors were encountered:
I realize this problem due to unsuitable anchor and IOU. try modifying this line
positive_indices = torch.ge(IoU_max, 0.4) --> positive_indices = torch.ge(IoU_max, 0.1)
Thanks
I realize this problem due to unsuitable anchor and IOU. try modifying this line
positive_indices = torch.ge(IoU_max, 0.4) --> positive_indices = torch.ge(IoU_max, 0.1)
Thanks
I don't think that's a proper solution, you should instead change anchor ratio to suit your datasets. @buidung2004
I'm training from scratch of EfficientDet-d0 on a dataset which contains 600 images to recognize insulators, which is the only one class. However, when I was both training and evaluating, the Reg loss keeps zero, and the Cls loss first declines then increases and then declines rapidly. Cannot figure out what's happening, is it for lack of data and overfitting happens? But will it bring zero Reg loss? After all, I'm using the minimum version of EfficientDet. Any help, plz!
The text was updated successfully, but these errors were encountered: