29 lines
817 B
Python
29 lines
817 B
Python
# model settings
|
|
model = dict(
|
|
type='ImageClassifier',
|
|
backbone=dict(
|
|
type='HiViT',
|
|
arch='tiny',
|
|
img_size=224,
|
|
ape=True,
|
|
rpe=True,
|
|
drop_path_rate=0.05),
|
|
neck=dict(type='GlobalAveragePooling'),
|
|
head=dict(
|
|
type='LinearClsHead',
|
|
num_classes=1000,
|
|
in_channels=384,
|
|
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='Mixup', alpha=0.8),
|
|
dict(type='CutMix', alpha=1.0)
|
|
]),
|
|
)
|