-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase2new_test_maple.sh
More file actions
58 lines (50 loc) · 1.47 KB
/
Copy pathbase2new_test_maple.sh
File metadata and controls
58 lines (50 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/bin/bash
#cd ../..
# custom config
DATA="/mnt/hdd/DATA"
TRAINER=MaPLe
DATASET=$1
SEED=$2
DEVICE=$3
BEST=$4
CFG=vit_b16_c2_ep5_batch4_2ctx
SHOTS=16
LOADEP=5
SUB=new
# DIR=/mnt/hdd/lvsl/output/base2new/train_base/MaPLe_${CFG}/${DATASET}/seed${SEED}
# COMMON_DIR=${CFG}_BEST/${DATASET}/seed${SEED}
MODEL_DIR=/mnt/hdd/lvsl/output/base2new/train_base/MaPLe_${CFG}/${DATASET}/seed${SEED}
DIR=/mnt/hdd/lvsl/output/base2new/test_${SUB}/MaPLe_${CFG}/${DATASET}/seed${SEED}
if [ -d "$DIR" ]; then
echo "Evaluating model"
echo "Results are available in ${DIR}. Resuming..."
python train.py \
--root ${DATA} \
--seed ${SEED} \
--trainer ${TRAINER} \
--dataset-config-file configs/datasets/${DATASET}.yaml \
--config-file configs/trainers/${TRAINER}/${CFG}.yaml \
--output-dir ${DIR} \
--model-dir ${MODEL_DIR} \
--load-epoch ${LOADEP} \
--device ${DEVICE} \
--eval-only \
DATASET.NUM_SHOTS ${SHOTS} \
DATASET.SUBSAMPLE_CLASSES ${SUB}
else
echo "Evaluating model"
echo "Runing the first phase job and save the output to ${DIR}"
python train.py \
--root ${DATA} \
--seed ${SEED} \
--trainer ${TRAINER} \
--dataset-config-file configs/datasets/${DATASET}.yaml \
--config-file configs/trainers/${TRAINER}/${CFG}.yaml \
--output-dir ${DIR} \
--model-dir ${MODEL_DIR} \
--load-epoch ${LOADEP} \
--device ${DEVICE} \
--eval-only \
DATASET.NUM_SHOTS ${SHOTS} \
DATASET.SUBSAMPLE_CLASSES ${SUB}
fi