STDC/configs/unet/pspnet_unet_s5-d16_ce-1.0-dice-3.0_128x128_40k_stare.py
MengzhangLI 7f06e01d37
[Feature] Add UNet benchmark with multiple losses supervision (#1143)
* upload models and new configs

* fix hrf readme error

* fix hrf readme error

* add mDice of old models

* refactor configs
2021-12-23 21:38:51 +08:00

7 lines
257 B
Python

_base_ = './pspnet_unet_s5-d16_128x128_40k_stare.py'
model = dict(
decode_head=dict(loss_decode=[
dict(type='CrossEntropyLoss', loss_name='loss_ce', loss_weight=1.0),
dict(type='DiceLoss', loss_name='loss_dice', loss_weight=3.0)
]))