32 lines
736 B
Bash
32 lines
736 B
Bash
#!/bin/bash
|
|
|
|
#cd ../..
|
|
|
|
# custom config
|
|
DATA="/path/to/dataset/folder"
|
|
TRAINER=MaPLe
|
|
|
|
DATASET=$1
|
|
SEED=$2
|
|
|
|
CFG=vit_b16_c2_ep5_batch4_2ctx_cross_datasets
|
|
SHOTS=16
|
|
|
|
|
|
DIR=output/evaluation/${TRAINER}/${CFG}_${SHOTS}shots/${DATASET}/seed${SEED}
|
|
if [ -d "$DIR" ]; then
|
|
echo "Results are available in ${DIR}. Skip this job"
|
|
else
|
|
echo "Run this 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 output/imagenet/${TRAINER}/${CFG}_${SHOTS}shots/seed${SEED} \
|
|
--load-epoch 2 \
|
|
--eval-only
|
|
fi |