YOLO-World-Seg / third_party /mmyolo /configs /yolov5 /yolov5_n-v61_syncbn_fast_8xb16-300e_coco.py
onuralpszr's picture
feat: ✨ YOLO-World-Seg files uploaded
b291f6a verified
raw
history blame contribute delete
No virus
371 Bytes
_base_ = './yolov5_s-v61_syncbn_fast_8xb16-300e_coco.py'
deepen_factor = 0.33
widen_factor = 0.25
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)))