-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase2new_train_bmip.sh
More file actions
43 lines (37 loc) · 1 KB
/
base2new_train_bmip.sh
File metadata and controls
43 lines (37 loc) · 1 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
#!/bin/bash
#cd ../..
# custom config
DATA="/mnt/hdd/DATA"
TRAINER=BMIP
DATASET=$1
SEED=$2
DEVICE=$3
# CFG=BMIP_ctx2_dp9_lr2_seed2020
CFG=$4
SHOTS=16
DIR=./output/base2new/train_base/${CFG}/${DATASET}/seed${SEED}
if [ -d "$DIR" ]; then
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} \
--device ${DEVICE} \
DATASET.NUM_SHOTS ${SHOTS} \
DATASET.SUBSAMPLE_CLASSES base
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} \
--device ${DEVICE} \
DATASET.NUM_SHOTS ${SHOTS} \
DATASET.SUBSAMPLE_CLASSES base
fi