mirror of
https://github.com/open-mmlab/mmyolo.git
synced 2025-06-03 15:00:20 +08:00
* add cspnext * add neck * update * align s,tiny test * update * update * fix bug of UT * fix typehint * fix resize bug * update s and tiny * update s and tiny link * update convert * add cls config with rtmdet * update config * fix ci error Co-authored-by: wanghonglie <wanghonglie@pjlab.org.cn>
10 lines
316 B
Python
10 lines
316 B
Python
_base_ = './rtmdet_l_syncbn_8xb32-300e_coco.py'
|
|
|
|
deepen_factor = 1.33
|
|
widen_factor = 1.25
|
|
|
|
model = dict(
|
|
backbone=dict(deepen_factor=deepen_factor, widen_factor=widen_factor),
|
|
neck=dict(deepen_factor=deepen_factor, widen_factor=widen_factor),
|
|
bbox_head=dict(head_module=dict(widen_factor=widen_factor)))
|