Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
yolov3_migraphx
Commits
5ea34244
Commit
5ea34244
authored
May 29, 2023
by
Your Name
Browse files
修改测试图像地址
parent
01c4f6f1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
Python/YoloV3_infer_migraphx.py
Python/YoloV3_infer_migraphx.py
+1
-1
No files found.
Python/YoloV3_infer_migraphx.py
View file @
5ea34244
...
...
@@ -118,7 +118,7 @@ class YOLOv3:
if
__name__
==
'__main__'
:
parser
=
argparse
.
ArgumentParser
()
parser
.
add_argument
(
'--imgpath'
,
type
=
str
,
default
=
'../Resource/
Models/i
mages/dog.jpg'
,
help
=
"image path"
)
parser
.
add_argument
(
'--imgpath'
,
type
=
str
,
default
=
'../Resource/
I
mages/dog.jpg'
,
help
=
"image path"
)
parser
.
add_argument
(
'--modelpath'
,
type
=
str
,
default
=
'../Resource/Models/Detector/YOLOV3/yolov3-tiny.onnx'
,
help
=
"onnx filepath"
)
parser
.
add_argument
(
'--objectThreshold'
,
default
=
0.4
,
type
=
float
,
help
=
'class confidence'
)
parser
.
add_argument
(
'--confThreshold'
,
default
=
0.2
,
type
=
float
,
help
=
'class confidence'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment