Skip to content

Commit d666a1b

Browse files
author
yush1ga
committed
fix parameters' name in yolo_video.py
1 parent e6598d1 commit d666a1b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

yolo_video.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,17 @@ def detect_img(yolo):
2525
Command line options
2626
'''
2727
parser.add_argument(
28-
'--model', type=str,
28+
'--model-path', type=str,
2929
help='path to model weight file, default ' + YOLO.get_defaults("model_path")
3030
)
3131

3232
parser.add_argument(
33-
'--anchors', type=str,
33+
'--anchors-path', type=str,
3434
help='path to anchor definitions, default ' + YOLO.get_defaults("anchors_path")
3535
)
3636

3737
parser.add_argument(
38-
'--classes', type=str,
38+
'--classes-path', type=str,
3939
help='path to class definitions, default ' + YOLO.get_defaults("classes_path")
4040
)
4141

0 commit comments

Comments
 (0)