mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
* add mmpose code * update * update * add rewrites * test trt * test litehrnet with trt * revert unused change * add docs about mmpose * add docstring and staticmethod * update * update * update docs * fix config name and docs * add pose_detection ut * add pose data * fix lint of model.py * add pose_detection_model ut * fix docs and docstrinf * add test_mmpose_models.py * fix yapf * fix lint * fix create input * support ort ut * fix yapf * fix docs * fix createinput * test ci bug * rm test1.py * fix yapf * fix flake8 * fix yapf * add config and update benchmark * fix table format * update mmpose benchmark * update benchmark for mmpose * run mmpose tests seperately in ci * fix lint * resolve comments * add trt ut config * fix test * fix tests * resolve comments * resolve comments * update tests Co-authored-by: VVsssssk <shenkun@pjlab.org.cn> Co-authored-by: hanrui1sensetime <hanrui1@sensetime.com>
14 lines
438 B
Python
14 lines
438 B
Python
_base_ = ['./pose-detection_static.py', '../_base_/backends/tensorrt.py']
|
|
|
|
onnx_config = dict(input_shape=[192, 256])
|
|
backend_config = dict(
|
|
common_config=dict(max_workspace_size=1 << 30),
|
|
model_inputs=[
|
|
dict(
|
|
input_shapes=dict(
|
|
input=dict(
|
|
min_shape=[1, 3, 256, 192],
|
|
opt_shape=[1, 3, 256, 192],
|
|
max_shape=[1, 3, 256, 192])))
|
|
])
|