YOLO-World / third_party /mmyolo /configs /yolov5 /yolov5_l-v61_syncbn_fast_8xb16-300e_coco.py
stevengrove
initial commit
186701e
raw
history blame contribute delete
No virus
369 Bytes
_base_ = './yolov5_m-v61_syncbn_fast_8xb16-300e_coco.py'
deepen_factor = 1.0
widen_factor = 1.0
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)))