Closed SpongeBab closed 3 years ago
In train.py parser.add_argument('--img-size', nargs='+', type=int, default=[800, 800], help='train,test sizes') and In yolov4-csp.cfg
parser.add_argument('--img-size', nargs='+', type=int, default=[800, 800], help='train,test sizes')
width=512 height=512
which is be used to train or test?
This repo is different from the darknet. The image-size is set in the parser.add_argument('--img-size', nargs='+', type=int, default=[512, 512], help='train,test sizes'). Darknet set it in the cfg files.
parser.add_argument('--img-size', nargs='+', type=int, default=[512, 512], help='train,test sizes')
In train.py
parser.add_argument('--img-size', nargs='+', type=int, default=[800, 800], help='train,test sizes')
and In yolov4-csp.cfgwhich is be used to train or test?