snnetv2-semantic-segmentation / configs /mobilenet_v2 /mobilenet-v2-d8_fcn_4xb4-160k_ade20k-512x512.py
HubHop
update
412c852
raw
history blame
459 Bytes
_base_ = '../fcn/fcn_r101-d8_4xb4-160k_ade20k-512x512.py'
model = dict(
pretrained='mmcls://mobilenet_v2',
backbone=dict(
_delete_=True,
type='MobileNetV2',
widen_factor=1.,
strides=(1, 2, 2, 1, 1, 1, 1),
dilations=(1, 1, 1, 2, 2, 4, 4),
out_indices=(1, 2, 4, 6),
norm_cfg=dict(type='SyncBN', requires_grad=True)),
decode_head=dict(in_channels=320),
auxiliary_head=dict(in_channels=96))