Spaces:
Runtime error
Runtime error
File size: 313 Bytes
f549064 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
_base_ = ['./resnet50_32xb64-warmup_in1k.py']
model = dict(
head=dict(
type='LinearClsHead',
num_classes=1000,
in_channels=2048,
loss=dict(
type='LabelSmoothLoss',
loss_weight=1.0,
label_smooth_val=0.1,
num_classes=1000),
))
|