mirror of
https://github.com/open-mmlab/mmyolo.git
synced 2025-06-02 22:33:37 +08:00
* Beautify the YOLOX configuration * fix checks * Update configs/yolox/yolox_s_fast_8xb8-300e_coco.py Co-authored-by: HinGwenWoong <peterhuang0323@qq.com> * fix letter case problem * beauty yolox configs except yolox_s's config * fix lint * Update configs/yolox/yolox_s_fast_8xb8-300e_coco.py Co-authored-by: Haian Huang(深度眸) <1286304229@qq.com> * fix yolox_s yolox_tiny * fix tiny * fix tiny * simple tiny --------- Co-authored-by: HinGwenWoong <peterhuang0323@qq.com> Co-authored-by: Haian Huang(深度眸) <1286304229@qq.com>
13 lines
463 B
Python
13 lines
463 B
Python
_base_ = './yolox_s_fast_8xb8-300e_coco.py'
|
|
|
|
# ========================modified parameters======================
|
|
deepen_factor = 1.0
|
|
widen_factor = 1.0
|
|
|
|
# =======================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)))
|