mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
15 lines
277 B
Python
15 lines
277 B
Python
|
_base_ = ['./base.py']
|
||
|
pytorch2onnx = dict(
|
||
|
dynamic_axes={
|
||
|
'input': {
|
||
|
0: 'batch',
|
||
|
2: 'height',
|
||
|
3: 'width'
|
||
|
},
|
||
|
'output': {
|
||
|
0: 'batch',
|
||
|
2: 'height',
|
||
|
3: 'width'
|
||
|
},
|
||
|
}, )
|