mmpretrain/configs/deit/deit-base-distilled_ft-16xb32_in1k-384px.py
2022-07-18 11:11:13 +08:00

10 lines
274 B
Python

_base_ = './deit-base_ft-16xb32_in1k-384px.py'
# model settings
model = dict(
backbone=dict(type='DistilledVisionTransformer'),
head=dict(type='DeiTClsHead'),
# Change to the path of the pretrained model
# init_cfg=dict(type='Pretrained', checkpoint=''),
)