mmyolo/configs/yolox/yolox_nano_fast_8xb8-300e_c...

22 lines
648 B
Python

_base_ = './yolox_tiny_fast_8xb8-300e_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)))