"googlemock/vscode:/vscode.git/clone" did not exist on "88311784e43440456a7acb3d1afd65b36c1f095d"
pose-detection_simcc_onnxruntime_dynamic.py 447 Bytes
Newer Older
limm's avatar
limm committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
_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',
        },
        'simcc_x': {
            0: 'batch'
        },
        'simcc_y': {
            0: 'batch'
        }
    })

codebase_config = dict(
    export_postprocess=False  # do not export get_simcc_maximum
)