mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
* support pose simcc * fix yolov5 create_input * add yolov5 post process and update mmcls.yml * add letter resize * add yolov5 export info * fix * add pose face config * pick 4dd4d4851bcc381da3e44098a2ff3d1ff6b5f1d9 * fix yolov5 head * fix ut * refactor mmpose config * pass output_names outside * rknn batch size * lint * add input names to wrapper * update according to https://github.com/open-mmlab/mmyolo/pull/305 * add pre_compile option * update doc and fix typo * fix padding * fix typo * use throw_exception
11 lines
324 B
Python
11 lines
324 B
Python
_base_ = ['./pose-detection_static.py', '../_base_/backends/rknn.py']
|
|
|
|
onnx_config = dict(input_shape=[256, 256])
|
|
|
|
codebase_config = dict(model_type='end2end')
|
|
|
|
backend_config = dict(
|
|
input_size_list=[[3, 256, 256]],
|
|
quantization_config=dict(do_quantization=False),
|
|
common_config=dict(target_platform='rv1126'))
|