Skip to content

Commit

Permalink
fixed default --network argument to posenet.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dusty-nv committed Aug 9, 2021
1 parent 1b3ad00 commit 7a1f961
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/examples/posenet.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

parser.add_argument("input_URI", type=str, default="", nargs='?', help="URI of the input stream")
parser.add_argument("output_URI", type=str, default="", nargs='?', help="URI of the output stream")
parser.add_argument("--network", type=str, default="ssd-mobilenet-v2", help="pre-trained model to load (see below for options)")
parser.add_argument("--network", type=str, default="resnet18-body", help="pre-trained model to load (see below for options)")
parser.add_argument("--overlay", type=str, default="links,keypoints", help="pose overlay flags (e.g. --overlay=links,keypoints)\nvalid combinations are: 'links', 'keypoints', 'boxes', 'none'")
parser.add_argument("--threshold", type=float, default=0.15, help="minimum detection threshold to use")

Expand Down

0 comments on commit 7a1f961

Please sign in to comment.