mirror of
https://github.com/open-mmlab/mmclassification.git
synced 2025-06-03 21:53:55 +08:00
13 lines
308 B
Python
13 lines
308 B
Python
_base_ = ['./resnet50_batch2048_warmup.py']
|
|
model = dict(
|
|
head=dict(
|
|
type='LinearHead',
|
|
num_classes=1000,
|
|
in_channels=2048,
|
|
loss=dict(
|
|
type='LabelSmoothLoss',
|
|
loss_weight=1.0,
|
|
label_smooth_val=0.1,
|
|
num_classes=1000),
|
|
))
|