mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
* support tsn * support slowfast * fix export info & End2EndModel * add test * fix forward * fix lint * update tests * add onnxruntime 2d config * fix ort-gpu * add mmaction.yml, need to update * fix reviews * add ann.txt * add visualize * fix lint * rebase * add conftest.py * fix circle ci * fix registry * fix regression test
17 lines
330 B
Python
17 lines
330 B
Python
_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)
|