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
Hello Team ,
I am using yolov4 for object detection and training it on custom dataset
after 300 iteration i am getting Nan value for weights
weights used:
yolov4.conv.137 (after 6000 iteration also not able to detect object
Tried to train it from scratch with below command but getting Nan value
!./darknet detector train data/obj.data cfg/yolo-obj.cfg yolov4.weights -clear -dont_show -map
Note: Training data is related to crops
The text was updated successfully, but these errors were encountered:
solutions:
1.Decrease the learning rate suppose, for example, if you are using learning rate as 0.00001, use 0.0000001.
2.adjust the learning_decay
3.add clipnorm value (the last option but it is optional)
4. Increase the validation data
Hello Team ,
I am using yolov4 for object detection and training it on custom dataset
after 300 iteration i am getting Nan value for weights
weights used:
!./darknet detector train data/obj.data cfg/yolo-obj.cfg yolov4.weights -clear -dont_show -map
Note: Training data is related to crops
The text was updated successfully, but these errors were encountered: