mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 07:00:55 +08:00
* delete convert function and add instruction to README.md * unified model convert and README * remove url * fix import error * fix unittest * rename pretrain * rename vit and deit pretrain * Update upernet_deit-b16_512x512_160k_ade20k.py * Update upernet_deit-b16_512x512_80k_ade20k.py * Update upernet_deit-b16_ln_mln_512x512_160k_ade20k.py * Update upernet_deit-b16_mln_512x512_160k_ade20k.py * Update upernet_deit-s16_512x512_160k_ade20k.py * Update upernet_deit-s16_512x512_80k_ade20k.py * Update upernet_deit-s16_ln_mln_512x512_160k_ade20k.py * Update upernet_deit-s16_mln_512x512_160k_ade20k.py Co-authored-by: Jiarui XU <xvjiarui0826@gmail.com> Co-authored-by: Junjun2016 <hejunjun@sjtu.edu.cn>
39 lines
987 B
Python
39 lines
987 B
Python
_base_ = [
|
|
'../_base_/models/upernet_vit-b16_ln_mln.py',
|
|
'../_base_/datasets/ade20k.py', '../_base_/default_runtime.py',
|
|
'../_base_/schedules/schedule_80k.py'
|
|
]
|
|
|
|
model = dict(
|
|
pretrained='pretrain/vit_base_patch16_224.pth',
|
|
decode_head=dict(num_classes=150),
|
|
auxiliary_head=dict(num_classes=150))
|
|
|
|
# AdamW optimizer, no weight decay for position embedding & layer norm
|
|
# in backbone
|
|
optimizer = dict(
|
|
_delete_=True,
|
|
type='AdamW',
|
|
lr=0.00006,
|
|
betas=(0.9, 0.999),
|
|
weight_decay=0.01,
|
|
paramwise_cfg=dict(
|
|
custom_keys={
|
|
'pos_embed': dict(decay_mult=0.),
|
|
'cls_token': dict(decay_mult=0.),
|
|
'norm': dict(decay_mult=0.)
|
|
}))
|
|
|
|
lr_config = dict(
|
|
_delete_=True,
|
|
policy='poly',
|
|
warmup='linear',
|
|
warmup_iters=1500,
|
|
warmup_ratio=1e-6,
|
|
power=1.0,
|
|
min_lr=0.0,
|
|
by_epoch=False)
|
|
|
|
# By default, models are trained on 8 GPUs with 2 images per GPU
|
|
data = dict(samples_per_gpu=2)
|