We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6598d1 commit d666a1bCopy full SHA for d666a1b
yolo_video.py
@@ -25,17 +25,17 @@ def detect_img(yolo):
25
Command line options
26
'''
27
parser.add_argument(
28
- '--model', type=str,
+ '--model-path', type=str,
29
help='path to model weight file, default ' + YOLO.get_defaults("model_path")
30
)
31
32
33
- '--anchors', type=str,
+ '--anchors-path', type=str,
34
help='path to anchor definitions, default ' + YOLO.get_defaults("anchors_path")
35
36
37
38
- '--classes', type=str,
+ '--classes-path', type=str,
39
help='path to class definitions, default ' + YOLO.get_defaults("classes_path")
40
41
0 commit comments