EasyCV/configs/segmentation/segformer/segformer_b2_coco.py
pengyu.lpy 2bf3b55655 add segformer algo
. 增加了segformer的b1, b2, b3, b4几个配置文件。
. 预训练模型,log文件等均已经更新
. 已经从master合并结果
        Link: https://code.alibaba-inc.com/pai-vision/EasyCV/codereview/9931529
2022-08-30 19:15:15 +08:00

15 lines
347 B
Python

_base_ = './segformer_b0_coco.py'
model = dict(
pretrained=
'https://download.openmmlab.com/mmsegmentation/v0.5/pretrain/segformer/mit_b2_20220624-66e8bf70.pth',
backbone=dict(
embed_dims=64,
num_layers=[3, 4, 6, 3],
),
decode_head=dict(
in_channels=[64, 128, 320, 512],
channels=768,
),
)