mirror of https://github.com/open-mmlab/mmyolo.git
12 lines
457 B
Python
12 lines
457 B
Python
_base_ = './rtmdet_l_syncbn_fast_8xb32-300e_coco.py'
|
|
|
|
# ========================modified parameters======================
|
|
deepen_factor = 1.33
|
|
widen_factor = 1.25
|
|
|
|
# =======================Unmodified in most cases==================
|
|
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)))
|