diff --git a/yolo_video.py b/yolo_video.py index 7c394617c..6bc32c567 100644 --- a/yolo_video.py +++ b/yolo_video.py @@ -25,17 +25,17 @@ def detect_img(yolo): Command line options ''' parser.add_argument( - '--model', type=str, + '--model-path', type=str, help='path to model weight file, default ' + YOLO.get_defaults("model_path") ) parser.add_argument( - '--anchors', type=str, + '--anchors-path', type=str, help='path to anchor definitions, default ' + YOLO.get_defaults("anchors_path") ) parser.add_argument( - '--classes', type=str, + '--classes-path', type=str, help='path to class definitions, default ' + YOLO.get_defaults("classes_path") )