2022-01-28 10:36:45 +08:00
|
|
|
# Model settings
|
|
|
|
model = dict(
|
|
|
|
type='ImageClassifier',
|
2023-01-06 16:13:41 +08:00
|
|
|
backbone=dict(type='ConvNeXt', arch='xlarge', drop_path_rate=0.5),
|
2022-01-28 10:36:45 +08:00
|
|
|
head=dict(
|
|
|
|
type='LinearClsHead',
|
|
|
|
num_classes=1000,
|
|
|
|
in_channels=2048,
|
2022-12-19 13:54:24 +08:00
|
|
|
loss=dict(
|
|
|
|
type='LabelSmoothLoss', label_smooth_val=0.1, mode='original'),
|
2023-01-06 16:13:41 +08:00
|
|
|
init_cfg=None,
|
2022-12-19 13:54:24 +08:00
|
|
|
),
|
2023-01-06 16:13:41 +08:00
|
|
|
init_cfg=dict(
|
|
|
|
type='TruncNormal', layer=['Conv2d', 'Linear'], std=.02, bias=0.),
|
2022-12-19 13:54:24 +08:00
|
|
|
train_cfg=dict(augments=[
|
|
|
|
dict(type='Mixup', alpha=0.8),
|
|
|
|
dict(type='CutMix', alpha=1.0),
|
|
|
|
]),
|
|
|
|
)
|