mmdeploy/configs/mmaction/video-recognition/video-recognition_3d_dynamic.py
Chen Xin 2020e74480
Support mmaction2:dev-1.x (#1012)
* 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
2022-10-19 15:42:57 +08:00

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)