From ada29581053109b07cafb587105b74f735ba1e3d Mon Sep 17 00:00:00 2001 From: "Timothy M. Shead" Date: Sun, 12 Apr 2020 11:00:50 -0600 Subject: [PATCH] Fix argparse string escapes in train.py. (#1045) --- train.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/train.py b/train.py index 04292736..9f21b190 100644 --- a/train.py +++ b/train.py @@ -386,7 +386,7 @@ if __name__ == '__main__': parser.add_argument('--accumulate', type=int, default=4, help='batches to accumulate before optimizing') parser.add_argument('--cfg', type=str, default='cfg/yolov3-spp.cfg', help='*.cfg path') parser.add_argument('--data', type=str, default='data/coco2017.data', help='*.data path') - parser.add_argument('--multi-scale', action='store_true', help='adjust (67% - 150%) img_size every 10 batches') + parser.add_argument('--multi-scale', action='store_true', help='adjust (67%% - 150%%) img_size every 10 batches') parser.add_argument('--img-size', nargs='+', type=int, default=[416], help='train and test image-sizes') parser.add_argument('--rect', action='store_true', help='rectangular training') parser.add_argument('--resume', action='store_true', help='resume training from last.pt')