mirror of
https://github.com/open-mmlab/mmyolo.git
synced 2025-06-03 15:00:20 +08:00
* Implement fast version of YOLOX * config change * Update yolox_head.py * Update mmyolo/models/data_preprocessors/data_preprocessor.py Co-authored-by: Haian Huang(深度眸) <1286304229@qq.com> * Update mmyolo/models/data_preprocessors/data_preprocessor.py Co-authored-by: Haian Huang(深度眸) <1286304229@qq.com> * add test and modify faults * fix lint * fix lint * modify metafile and README * modify metafile and readme * fix * fix * fix * fix * fix * fix test --------- Co-authored-by: Haian Huang(深度眸) <1286304229@qq.com>
11 lines
327 B
Python
11 lines
327 B
Python
_base_ = './yolox_s_fast_8xb8-300e_coco.py'
|
|
|
|
deepen_factor = 1.0
|
|
widen_factor = 1.0
|
|
|
|
# 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)))
|