mirror of
https://github.com/open-mmlab/mmyolo.git
synced 2025-06-03 06:41:24 +08:00
18 lines
337 B
Python
18 lines
337 B
Python
|
_base_ = ['./base_static.py']
|
||
|
onnx_config = dict(
|
||
|
dynamic_axes={
|
||
|
'input': {
|
||
|
0: 'batch',
|
||
|
2: 'height',
|
||
|
3: 'width'
|
||
|
},
|
||
|
'dets': {
|
||
|
0: 'batch',
|
||
|
1: 'num_dets'
|
||
|
},
|
||
|
'labels': {
|
||
|
0: 'batch',
|
||
|
1: 'num_dets'
|
||
|
}
|
||
|
})
|