Spaces:
Runtime error
Runtime error
File size: 407 Bytes
412c852 |
1 2 3 4 5 6 7 8 9 10 11 |
_base_ = [
'swin-large-patch4-window7-in22k-pre_upernet_'
'8xb2-160k_ade20k-512x512.py'
]
checkpoint_file = 'https://download.openmmlab.com/mmsegmentation/v0.5/pretrain/swin/swin_large_patch4_window12_384_22k_20220412-6580f57d.pth' # noqa
model = dict(
backbone=dict(
init_cfg=dict(type='Pretrained', checkpoint=checkpoint_file),
pretrain_img_size=384,
window_size=12))
|