From 35fb03a5773ab71ba2c77d8842b317cc8398d2d0 Mon Sep 17 00:00:00 2001 From: mzr1996 Date: Fri, 25 Nov 2022 09:54:36 +0800 Subject: [PATCH] Remove wrong files. --- configs/mobilevit_small.py | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 configs/mobilevit_small.py diff --git a/configs/mobilevit_small.py b/configs/mobilevit_small.py deleted file mode 100644 index f6a4e05d..00000000 --- a/configs/mobilevit_small.py +++ /dev/null @@ -1,12 +0,0 @@ -# model settings -model = dict( - type='ImageClassifier', - backbone=dict(type='MobileViT', arch='small'), - neck=dict(type='GlobalAveragePooling'), - head=dict( - type='LinearClsHead', - num_classes=1000, - in_channels=640, - loss=dict(type='CrossEntropyLoss', loss_weight=1.0), - topk=(1, 5), - ))