-
Notifications
You must be signed in to change notification settings - Fork 150
/
SETR_Naive_768x768_80k_cityscapes_bs_8.py
66 lines (64 loc) · 2.08 KB
/
SETR_Naive_768x768_80k_cityscapes_bs_8.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
_base_ = [
'../_base_/models/setr_naive_pup.py',
'../_base_/datasets/cityscapes_768x768.py', '../_base_/default_runtime.py',
'../_base_/schedules/schedule_80k.py'
]
norm_cfg = dict(type='SyncBN', requires_grad=True)
model = dict(
backbone=dict(img_size=768, align_corners=False,
pos_embed_interp=True, drop_rate=0.),
decode_head=dict(img_size=768, align_corners=False, num_conv=2,
upsampling_method='bilinear', conv3x3_conv1x1=False),
auxiliary_head=[dict(
type='VisionTransformerUpHead',
in_channels=1024,
channels=512,
in_index=9,
img_size=768,
embed_dim=1024,
num_classes=19,
norm_cfg=norm_cfg,
num_conv=2,
upsampling_method='bilinear',
align_corners=False,
conv3x3_conv1x1=False,
loss_decode=dict(
type='CrossEntropyLoss', use_sigmoid=False, loss_weight=0.4)),
dict(
type='VisionTransformerUpHead',
in_channels=1024,
channels=512,
in_index=14,
img_size=768,
embed_dim=1024,
num_classes=19,
norm_cfg=norm_cfg,
num_conv=2,
upsampling_method='bilinear',
align_corners=False,
conv3x3_conv1x1=False,
loss_decode=dict(
type='CrossEntropyLoss', use_sigmoid=False, loss_weight=0.4)),
dict(
type='VisionTransformerUpHead',
in_channels=1024,
channels=512,
in_index=19,
img_size=768,
embed_dim=1024,
num_classes=19,
norm_cfg=norm_cfg,
num_conv=2,
upsampling_method='bilinear',
align_corners=False,
conv3x3_conv1x1=False,
loss_decode=dict(
type='CrossEntropyLoss', use_sigmoid=False, loss_weight=0.4)),
])
optimizer = dict(lr=0.01, weight_decay=0.0,
paramwise_cfg=dict(custom_keys={'head': dict(lr_mult=10.)})
)
crop_size = (768, 768)
test_cfg = dict(mode='slide', crop_size=crop_size, stride=(512, 512))
find_unused_parameters = True
data = dict(samples_per_gpu=1)