mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
* reorgnize mmrotate * fix * add hbb2obb * add ut * fix rotated nms * update docs * update benchmark * update test * remove ort regression test, remove comment
11 lines
286 B
Python
11 lines
286 B
Python
_base_ = ['../_base_/onnx_config.py']
|
|
codebase_config = dict(
|
|
type='mmrotate',
|
|
task='RotatedDetection',
|
|
post_processing=dict(
|
|
score_threshold=0.05,
|
|
iou_threshold=0.1,
|
|
pre_top_k=3000,
|
|
keep_top_k=2000,
|
|
max_output_boxes_per_class=2000))
|