Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions yolo_video.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
)

Expand Down