rotated-detection_onnxruntime-fp16_dynamic.py 557 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
21
22
23
24
25
_base_ = [
    './rotated-detection_static.py', '../_base_/backends/onnxruntime-fp16.py'
]

onnx_config = dict(
    output_names=['dets', 'labels'],
    input_shape=[1024, 1024],
    dynamic_axes={
        'input': {
            0: 'batch',
            2: 'height',
            3: 'width'
        },
        'dets': {
            0: 'batch',
            1: 'num_dets',
        },
        'labels': {
            0: 'batch',
            1: 'num_dets',
        },
    })

backend_config = dict(
    common_config=dict(op_block_list=['NMSRotated', 'Resize']))