12 lines
398 B
Python
12 lines
398 B
Python
_base_ = ['./twins_pcpvt-s_uperhead_8x4_512x512_160k_ade20k.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],
|
|
drop_path_rate=0.3))
|
|
|
|
data = dict(samples_per_gpu=2, workers_per_gpu=2)
|