YOLO-World3 / third_party /mmyolo /configs /yolox /pose /yolox-pose_m_8xb32-300e-rtmdet-hyp_coco.py
stevengrove
initial commit
186701e
raw
history blame contribute delete
No virus
658 Bytes
_base_ = ['./yolox-pose_s_8xb32-300e-rtmdet-hyp_coco.py']
load_from = 'https://download.openmmlab.com/mmyolo/v0/yolox/yolox_m_fast_8xb32-300e-rtmdet-hyp_coco/yolox_m_fast_8xb32-300e-rtmdet-hyp_coco_20230210_144328-e657e182.pth' # noqa
# ========================modified parameters======================
deepen_factor = 0.67
widen_factor = 0.75
# =======================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)))