-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathswinT.py
More file actions
34 lines (32 loc) · 1.01 KB
/
swinT.py
File metadata and controls
34 lines (32 loc) · 1.01 KB
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
_base_ = [
'../_base_/custom_imports.py',
'../_base_/datasets/imagenet_sda.py',
'../_base_/default_runtime.py'
]
# data settings
data = dict(
samples_per_gpu=100,
workers_per_gpu=4,
)
# model settings
model = dict(
type='ImageClassifier',
backbone=dict(
type='SwinTransformer', arch='tiny', img_size=224, drop_path_rate=0.2),
neck=dict(type='GlobalAveragePooling'),
head=dict(
type='LinearClsHead',
num_classes=1000,
in_channels=768,
init_cfg=None, # suppress the default init_cfg of LinearClsHead.
loss=dict(type='LabelSmoothLoss', label_smooth_val=0.1, mode='original'),
cal_acc=False
),
init_cfg=[
dict(type='TruncNormal', layer='Linear', std=0.02, bias=0.),
dict(type='Constant', layer='LayerNorm', val=1., bias=0.)
],
train_cfg=dict(augments=[
dict(type='BatchMixup', alpha=0.8, num_classes=1000, prob=0.5),
dict(type='BatchCutMix', alpha=1.0, num_classes=1000, prob=0.5)
]))