mirror of https://github.com/open-mmlab/mmyolo.git
13 lines
477 B
Python
13 lines
477 B
Python
|
_base_ = './yolox_s_fast_8xb32-300e-rtmdet-hyp_coco.py'
|
||
|
|
||
|
# ========================modified parameters======================
|
||
|
deepen_factor = 0.67
|
||
|
widen_factor = 0.75
|
||
|
|
||
|
# =======================Unmodified in most cases==================
|
||
|
# model settings
|
||
|
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)))
|