deit-tiny-distilled_pt-4xb256_in1k.py 200 Bytes
Newer Older
1
2
3
4
5
6
7
_base_ = './deit-small_pt-4xb256_in1k.py'

# model settings
model = dict(
    backbone=dict(type='DistilledVisionTransformer', arch='deit-tiny'),
    head=dict(type='DeiTClsHead', in_channels=192),
)