mirror of
https://github.com/open-mmlab/mmclassification.git
synced 2025-06-03 20:33:55 +08:00
11 lines
268 B
Python
11 lines
268 B
Python
|
_base_ = './deit-small_pt-4xb256_in1k.py'
|
||
|
|
||
|
# model settings
|
||
|
model = dict(
|
||
|
backbone=dict(type='DistilledVisionTransformer', arch='deit-base'),
|
||
|
head=dict(type='DeiTClsHead', in_channels=768),
|
||
|
)
|
||
|
|
||
|
# data settings
|
||
|
data = dict(samples_per_gpu=64, workers_per_gpu=5)
|