EasyCV/configs/detection/yolox/yolox_l_8xb8_300e_coco.py

10 lines
227 B
Python
Raw Normal View History

2022-04-02 20:01:06 +08:00
_base_ = './yolox_s_8xb16_300e_coco.py'
# model settings
model = dict(model_type='l')
data = dict(imgs_per_gpu=8, workers_per_gpu=4)
optimizer = dict(
type='SGD', lr=0.01, momentum=0.9, weight_decay=5e-4, nesterov=True)