未验证 提交 a4e093b7 编写于 作者: J JYChen 提交者: GitHub

fix use_dark can not set to False (#5304)

上级 fca31c81
......@@ -112,7 +112,7 @@ def argsparser():
"calibration, trt_calib_mode need to set True.")
parser.add_argument(
'--use_dark',
type=bool,
type=ast.literal_eval,
default=True,
help='whether to use darkpose to get better keypoint position predict ')
parser.add_argument(
......
......@@ -133,7 +133,7 @@ def argsparser():
help="max batch_size for reid model inference.")
parser.add_argument(
'--use_dark',
type=bool,
type=ast.literal_eval,
default=True,
help='whether to use darkpose to get better keypoint position predict ')
return parser
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册