Spaces:
Runtime error
Runtime error
File size: 401 Bytes
412c852 |
1 2 3 4 5 6 7 8 9 10 11 |
_base_ = ['./segformer_mit-b0_8xb1-160k_cityscapes-1024x1024.py']
checkpoint = 'https://download.openmmlab.com/mmsegmentation/v0.5/pretrain/segformer/mit_b5_20220624-658746d9.pth' # noqa
model = dict(
backbone=dict(
init_cfg=dict(type='Pretrained', checkpoint=checkpoint),
embed_dims=64,
num_layers=[3, 6, 40, 3]),
decode_head=dict(in_channels=[64, 128, 320, 512]))
|