14 lines
244 B
Python
14 lines
244 B
Python
|
_base_ = ['./classification_static.py']
|
||
|
|
||
|
onnx_config = dict(
|
||
|
dynamic_axes={
|
||
|
'input': {
|
||
|
0: 'batch',
|
||
|
2: 'height',
|
||
|
3: 'width'
|
||
|
},
|
||
|
'output': {
|
||
|
0: 'batch'
|
||
|
}
|
||
|
}, )
|