AlexeyAB / darknet

YOLOv4 / Scaled-YOLOv4 / YOLO - Neural Networks for Object Detection (Windows and Linux version of Darknet )
http://pjreddie.com/darknet/
Other
21.75k stars 7.96k forks source link

yolov4-mish.cfg add `stopbackward=800` #6993

Open Linchunhui opened 3 years ago

Linchunhui commented 3 years ago

Why add this line?

erikguo commented 3 years ago

I have the same confusion. I check the code network.c. This "stopbackward=800' means stop backward after 800 iterations under GPU environment.

Should we remove this line when do training custom data ? Thank you

@AlexeyAB

AlexeyAB commented 3 years ago

This "stopbackward=800' means stop backward after 800 iterations under GPU environment.

No. "stopbackward=800' means stop backward before 800 iterations. You shouldn't change it.

erikguo commented 3 years ago

OK. Thanx. I made a misunderstanding :(.