Files
PromptSRC/scripts/cocoop/xd_train.sh
2023-07-13 23:43:31 +05:00

30 lines
627 B
Bash

#!/bin/bash
#cd ../..
# custom config
DATA=/path/to/datasets
TRAINER=CoCoOp
DATASET=imagenet
SEED=$1
CFG=vit_b16_c4_ep10_batch1_ctxv1
SHOTS=16
DIR=output/${DATASET}/${TRAINER}/${CFG}_${SHOTS}shots/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} \
DATASET.NUM_SHOTS ${SHOTS}
fi