-
Notifications
You must be signed in to change notification settings - Fork 7
/
run.sh
17 lines (12 loc) · 1.11 KB
/
run.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
python train.py --save_name cifar10_resnet18 --dataset cifar10 --model resnet18 --device 0
python test.py --load_name cifar10_resnet18 --dataset cifar10 --model resnet18 --device 0
python train.py --save_name cifar10_vgg16 --dataset cifar10 --model vgg16 --device 0
python test.py --load_name cifar10_vgg16 --dataset cifar10 --model vgg16 --device 0
python train.py --save_name cifar10_wideresnet34 --dataset cifar10 --model wideresnet34 --device 0
python test.py --load_name cifar10_wideresnet34 --dataset cifar10 --model wideresnet34 --device 0
python train.py --save_name svhn_resnet18 --dataset svhn --model resnet18 --device 0 --lr 0.01 --alpha 0.125
python test.py --load_name svhn_resnet18 --dataset svhn --model resnet18 --device 0
python train.py --save_name svhn_vgg16 --dataset svhn --model vgg16 --device 0 --lr 0.01 --alpha 0.125
python test.py --load_name svhn_vgg16 --dataset svhn --model vgg16 --device 0
python train.py --save_name svhn_wideresnet34 --dataset svhn --model wideresnet34 --device 0 --lr 0.01 --alpha 0.125
python test.py --load_name svhn_wideresnet34 --dataset svhn --model wideresnet34 --device 0