mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 22:03:48 +08:00
* rename ann configs * update ann yml * update * update * update * update * update * update ann readme * update * update deeplabv3 * update readme * fix yml * fix beit
9 lines
322 B
Python
9 lines
322 B
Python
_base_ = ['./twins_pcpvt-s_fpn_fpnhead_8xb4-80k_ade20k-512x512.py']
|
|
|
|
checkpoint = 'https://download.openmmlab.com/mmsegmentation/v0.5/pretrain/twins/pcpvt_large_20220308-37579dc6.pth' # noqa
|
|
|
|
model = dict(
|
|
backbone=dict(
|
|
init_cfg=dict(type='Pretrained', checkpoint=checkpoint),
|
|
depths=[3, 8, 27, 3]))
|