-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclassification.sh
12 lines (12 loc) · 1.74 KB
/
classification.sh
1
2
3
4
5
6
7
8
9
10
11
12
python train.py --dataset="CUB" --method="MD" --train_n_way=5 --test_n_way=5 --n_shot=1 --seed=1 --train_aug --steps=3 --tau=1 --loss="ELBO"
python train.py --dataset="CUB" --method="MD" --train_n_way=5 --test_n_way=5 --n_shot=5 --seed=1 --train_aug --steps=3 --tau=1 --loss="ELBO"
python train.py --dataset="cross_char" --method="MD" --train_n_way=5 --test_n_way=5 --n_shot=1 --seed=1 --train_aug --steps=3 --tau=1 --loss="ELBO" --kernel="rbf"
python train.py --dataset="cross_char" --method="MD" --train_n_way=5 --test_n_way=5 --n_shot=5 --seed=1 --train_aug --steps=3 --tau=1 --loss="ELBO" --kernel="rbf"
python train.py --dataset="cross" --method="MD" --train_n_way=5 --test_n_way=5 --n_shot=1 --seed=1 --train_aug --steps=3 --tau=1 --loss="ELBO"
python train.py --dataset="cross" --method="MD" --train_n_way=5 --test_n_way=5 --n_shot=5 --seed=1 --train_aug --steps=3 --tau=1 --loss="ELBO"
python test.py --dataset="CUB" --method="MD" --train_n_way=5 --test_n_way=5 --n_shot=1 --seed=1 --train_aug --steps=3 --tau=1 --loss="ELBO"
python test.py --dataset="CUB" --method="MD" --train_n_way=5 --test_n_way=5 --n_shot=5 --seed=1 --train_aug --steps=3 --tau=1 --loss="ELBO"
python test.py --dataset="cross_char" --method="MD" --train_n_way=5 --test_n_way=5 --n_shot=1 --seed=1 --train_aug --steps=3 --tau=1 --loss="ELBO" --kernel="rbf"
python test.py --dataset="cross_char" --method="MD" --train_n_way=5 --test_n_way=5 --n_shot=5 --seed=1 --train_aug --steps=3 --tau=1 --loss="ELBO" --kernel="rbf"
python test.py --dataset="cross" --method="MD" --train_n_way=5 --test_n_way=5 --n_shot=1 --seed=1 --train_aug --steps=3 --tau=1 --loss="ELBO"
python test.py --dataset="cross" --method="MD" --train_n_way=5 --test_n_way=5 --n_shot=5 --seed=1 --train_aug --steps=3 --tau=1 --loss="ELBO"