mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
16 lines
307 B
Python
16 lines
307 B
Python
|
_base_ = ['./video-recognition_static.py']
|
||
|
|
||
|
onnx_config = dict(
|
||
|
dynamic_axes={
|
||
|
'input': {
|
||
|
0: 'batch',
|
||
|
1: 'num_crops * num_segs',
|
||
|
3: 'height',
|
||
|
4: 'width'
|
||
|
},
|
||
|
'output': {
|
||
|
0: 'batch',
|
||
|
}
|
||
|
},
|
||
|
input_shape=None)
|