video-recognition_3d_dynamic.py 330 Bytes
Newer Older
limm's avatar
limm committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
_base_ = ['./video-recognition_static.py']

onnx_config = dict(
    dynamic_axes={
        'input': {
            0: 'batch',
            1: 'num_crops * num_segs',
            3: 'time',
            4: 'height',
            5: 'width'
        },
        'output': {
            0: 'batch',
        }
    },
    input_shape=None)