mirror of https://github.com/open-mmlab/mmyolo.git
22 lines
660 B
Python
22 lines
660 B
Python
_base_ = './yolox_tiny_fast_8xb32-300e-rtmdet-hyp_coco.py'
|
|
|
|
# ========================modified parameters======================
|
|
deepen_factor = 0.33
|
|
widen_factor = 0.25
|
|
use_depthwise = True
|
|
|
|
# =======================Unmodified in most cases==================
|
|
# model settings
|
|
model = dict(
|
|
backbone=dict(
|
|
deepen_factor=deepen_factor,
|
|
widen_factor=widen_factor,
|
|
use_depthwise=use_depthwise),
|
|
neck=dict(
|
|
deepen_factor=deepen_factor,
|
|
widen_factor=widen_factor,
|
|
use_depthwise=use_depthwise),
|
|
bbox_head=dict(
|
|
head_module=dict(
|
|
widen_factor=widen_factor, use_depthwise=use_depthwise)))
|