mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 18:23:49 +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>
7 lines
174 B
Python
7 lines
174 B
Python
_base_ = './upernet_vit-b16_mln_512x512_160k_ade20k.py'
|
|
|
|
model = dict(
|
|
pretrained='pretrain/deit_base_patch16_224-b5f2ef4d.pth',
|
|
backbone=dict(drop_path_rate=0.1),
|
|
)
|