-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbaseline.sh
More file actions
41 lines (36 loc) · 698 Bytes
/
baseline.sh
File metadata and controls
41 lines (36 loc) · 698 Bytes
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
### CIFAR10 + ResNet18
python train.py \
--save-dir CIFAR10/resnet18 \
--gpu 0 \
--model resnet18_cifar \
--max-lr 0.05 \
--nb-epoch 200 \
--train-size 32 \
--test-size 32 CIFAR10
### CIFAR100 + ResNet18
python train.py \
--save-dir CIFAR100/resnet18 \
--gpu 0 \
--model resnet18_cifar \
--max-lr 0.05 \
--nb-epoch 200 \
--train-size 32 \
--test-size 32 CIFAR100
### CUB + ResNet18
python train.py \
--save-dir CUB/resnet18 \
--gpu 0 \
--model resnet18 \
--max-lr 0.05 \
--nb-epoch 500 \
--train-size 224 \
--test-size 224 CUB
### CARS + ResNet18
python train.py \
--save-dir CARS/resnet18 \
--gpu 0 \
--model resnet18 \
--max-lr 0.05 \
--nb-epoch 500 \
--train-size 224 \
--test-size 224 CARS