Skip to content

Commit

Permalink
fix parameters' name in yolo_video.py
Browse files Browse the repository at this point in the history
  • Loading branch information
yush1ga committed Aug 29, 2019
1 parent e6598d1 commit 1207d9b
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 1207d9b

Please sign in to comment.