-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrain.sh
71 lines (66 loc) · 4.13 KB
/
train.sh
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
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/env bash
# CUDA_VISIBLE_DEVICES=1 python train.py
# python train.py --dataset "ucf101" --clip_model 'RN50' --batch_size 128
# python train.py --dataset "dtd" --clip_model 'RN50' --batch_size 128
# python train.py --dataset "eurosat" --clip_model 'RN50' --batch_size 128
# python train.py --dataset "fgvc" --clip_model 'RN50' --batch_size 128
# python train.py --dataset "caltech101" --clip_model 'RN50' --batch_size 128
# python train.py --dataset "food101" --clip_model 'RN50' --batch_size 128
# python train.py --dataset "sun397" --clip_model 'RN50' --batch_size 128
# python train.py --dataset "stanford_cars" --clip_model 'RN50' --batch_size 128
# python train.py --dataset "oxford_flowers" --clip_model 'RN50' --batch_size 128
python train.py --dataset "ucf101" --batch_size 128 --shots 16
python train.py --dataset "dtd" --batch_size 128 --shots 16
python train.py --dataset "eurosat" --batch_size 128 --shots 16
python train.py --dataset "fgvc" --batch_size 128 --shots 16
python train.py --dataset "caltech101" --batch_size 128 --shots 16
python train.py --dataset "food101" --batch_size 128 --shots 16
python train.py --dataset "sun397" --batch_size 128 --shots 16
python train.py --dataset "stanford_cars" --batch_size 128 --shots 16
python train.py --dataset "oxford_flowers" --batch_size 128 --shots 16
python train.py --dataset "ucf101" --batch_size 128 --shots 8
python train.py --dataset "dtd" --batch_size 128 --shots 8
python train.py --dataset "eurosat" --batch_size 128 --shots 8
python train.py --dataset "fgvc" --batch_size 128 --shots 8
python train.py --dataset "caltech101" --batch_size 128 --shots 8
python train.py --dataset "food101" --batch_size 128 --shots 8
python train.py --dataset "sun397" --batch_size 128 --shots 8
python train.py --dataset "stanford_cars" --batch_size 128 --shots 8
python train.py --dataset "oxford_flowers" --batch_size 128 --shots 8
python train.py --dataset "ucf101" --batch_size 16 --shots 4
python train.py --dataset "dtd" --batch_size 16 --shots 4
python train.py --dataset "eurosat" --batch_size 16 --shots 4
python train.py --dataset "fgvc" --batch_size 16 --shots 4
python train.py --dataset "caltech101" --batch_size 16 --shots 4
python train.py --dataset "food101" --batch_size 128 --shots 4
python train.py --dataset "sun397" --batch_size 128 --shots 4
python train.py --dataset "stanford_cars" --batch_size 128 --shots 4
python train.py --dataset "oxford_flowers" --batch_size 128 --shots 4
python train.py --dataset "ucf101" --batch_size 16 --shots 6
python train.py --dataset "dtd" --batch_size 16 --shots 6
python train.py --dataset "eurosat" --batch_size 16 --shots 6
python train.py --dataset "fgvc" --batch_size 128 --shots 6
python train.py --dataset "caltech101" --batch_size 128 --shots 6
python train.py --dataset "food101" --batch_size 128 --shots 6
python train.py --dataset "sun397" --batch_size 128 --shots 6
python train.py --dataset "stanford_cars" --batch_size 128 --shots 6
python train.py --dataset "oxford_flowers" --batch_size 128 --shots 6
python train.py --dataset "ucf101" --batch_size 16 --shots 2
python train.py --dataset "dtd" --batch_size 16 --shots 2
python train.py --dataset "eurosat" --batch_size 16 --shots 2
python train.py --dataset "fgvc" --batch_size 16 --shots 2
python train.py --dataset "caltech101" --batch_size 16 --shots 2
python train.py --dataset "food101" --batch_size 16 --shots 2
python train.py --dataset "sun397" --batch_size 16 --shots 2
python train.py --dataset "stanford_cars" --batch_size 16 --shots 2
python train.py --dataset "oxford_flowers" --batch_size 16 --shots 2
python train.py --dataset "pets" --batch_size 16 --shots 2
python train.py --dataset "pets" --batch_size 16 --shots 4
python train.py --dataset "pets" --batch_size 16 --shots 6
python train.py --dataset "pets" --batch_size 16 --shots 8
python train.py --dataset "pets" --batch_size 16 --shots 16
python train.py --dataset "imagenet" --batch_size 128 --shots 16
python train.py --dataset "imagenet" --batch_size 128 --shots 8
python train.py --dataset "imagenet" --batch_size 128 --shots 6
python train.py --dataset "imagenet" --batch_size 128 --shots 4
python train.py --dataset "imagenet" --batch_size 128 --shots 2