mmdeploy/configs/mmdet3d/voxel-detection/voxel-detection_dynamic.py

16 lines
292 B
Python

_base_ = ['./voxel-detection_static.py']
onnx_config = dict(
dynamic_axes={
'voxels': {
0: 'voxels_num',
},
'num_points': {
0: 'voxels_num',
},
'coors': {
0: 'voxels_num',
}
},
input_shape=None)