What does scale and step values in .cfg file of YOLO means?

别等时光非礼了梦想. 提交于 2021-01-05 07:01:45

问题


I am trying to understand the .cfg file of YOLOv2. I didn't understand

steps=-1,100,80000,100000

scales=.1,10,.1,.1

Can someone explain me this.


回答1:


steps is a checkpoints (number of iterations) at which scales will be applied.

scales is a coefficients at which learning_rate will be multiplied at this checkpoints. Determines how the learning_rate will be changed during increasing number of iterations during training.

Both of them are related to each other and they have the same amount.

steps=200,400,600,20000,30000

scales=2.5,2,2,.1,.1

At step 200 the scales is 2.5, step 400 the scale is 2, etc.

https://github.com/AlexeyAB/darknet/issues/279



来源:https://stackoverflow.com/questions/55372310/what-does-scale-and-step-values-in-cfg-file-of-yolo-means

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!