Skip to content

Commit 13d4c39

Browse files
authored
fix : segformer checkpoint url (open-mmlab#1785)
fix : segformer checkpoint url
1 parent 336435b commit 13d4c39

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

configs/segformer/segformer_mit-b5_512x512_160k_ade20k.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
_base_ = ['./segformer_mit-b0_512x512_160k_ade20k.py']
22

3-
checkpoint = 'https://download.openmmlab.com/mmsegmentation/v0.5/pretrain/segformer/mit_b5_20220624-658746d9.pthh' # noqa
3+
checkpoint = 'https://download.openmmlab.com/mmsegmentation/v0.5/pretrain/segformer/mit_b5_20220624-658746d9.pth' # noqa
44

55
# model settings
66
model = dict(

configs/segformer/segformer_mit-b5_640x640_160k_ade20k.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
test=dict(pipeline=test_pipeline))
3838

3939
# model settings
40-
checkpoint = 'https://download.openmmlab.com/mmsegmentation/v0.5/pretrain/segformer/mit_b5_20220624-658746d9.pthh' # noqa
40+
checkpoint = 'https://download.openmmlab.com/mmsegmentation/v0.5/pretrain/segformer/mit_b5_20220624-658746d9.pth' # noqa
4141
model = dict(
4242
pretrained=checkpoint,
4343
backbone=dict(

configs/segformer/segformer_mit-b5_8x1_1024x1024_160k_cityscapes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
_base_ = ['./segformer_mit-b0_8x1_1024x1024_160k_cityscapes.py']
22

3-
checkpoint = 'https://download.openmmlab.com/mmsegmentation/v0.5/pretrain/segformer/mit_b5_20220624-658746d9.pthh' # noqa
3+
checkpoint = 'https://download.openmmlab.com/mmsegmentation/v0.5/pretrain/segformer/mit_b5_20220624-658746d9.pth' # noqa
44
model = dict(
55
backbone=dict(
66
init_cfg=dict(type='Pretrained', checkpoint=checkpoint),

0 commit comments

Comments
 (0)