mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
* add rewriting for simcc * add simccdecode for sdk * remove debug lines * fix cpp lint * move simcc decode to sdk * add simcc sdk config * update docs and regression yaml * update yml
14 lines
300 B
Python
14 lines
300 B
Python
_base_ = ['./pose-detection_static.py', '../_base_/backends/onnxruntime.py']
|
|
|
|
onnx_config = dict(
|
|
input_shape=[192, 256],
|
|
output_names=['simcc_x', 'simcc_y'],
|
|
dynamic_axes={
|
|
'input': {
|
|
0: 'batch',
|
|
},
|
|
'output': {
|
|
0: 'batch'
|
|
}
|
|
})
|