@glenn-jocher
in yolov3.cfg, the width and height are 416, the anchor: 10,13, 16,30, 33,23, 30,61, 62,45, 59,119, 116,90, 156,198, 373,326
in yolov3-spp.cfg, the width and height are 608, the anchor also: 10,13, 16,30, 33,23, 30,61, 62,45, 59,119, 116,90, 156,198, 373,326
Why is the input size(width*height) different,but the anchor are same?
@H-YunHui anchor size is in pixels and read from the cfg file. Training size is not read from the cfg, it comes from the --img-size argparser argument. The two are independent.
@glenn-jocher in yolov3.cfg, the width and height are 416, the anchor: 10,13, 16,30, 33,23, 30,61, 62,45, 59,119, 116,90, 156,198, 373,326 in yolov3-spp.cfg, the width and height are 608, the anchor also: 10,13, 16,30, 33,23, 30,61, 62,45, 59,119, 116,90, 156,198, 373,326 Why is the input size(width*height) different,but the anchor are same?