-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathrun_cifar10.sh
executable file
·15 lines (13 loc) · 1.41 KB
/
run_cifar10.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env bash
python main.py -ei="ood" -et "train_classify" -ec "data~cifar10+model~densenetbc100+loss~softmax_no_no_no_final" -gpu 0 -x 10
python main.py -ei="ood" -et "train_classify" -ec "data~cifar10+model~densenetbc100+loss~isomax_no_no_no_final" -gpu 0 -x 10
python main.py -ei="ood" -et "train_classify" -ec "data~cifar10+model~densenetbc100+loss~isomaxplus_no_no_no_final" -gpu 0 -x 10
python main.py -ei="ood" -et "train_classify" -ec "data~cifar10+model~resnet110+loss~softmax_no_no_no_final" -gpu 0 -x 10
python main.py -ei="ood" -et "train_classify" -ec "data~cifar10+model~resnet110+loss~isomax_no_no_no_final" -gpu 0 -x 10
python main.py -ei="ood" -et "train_classify" -ec "data~cifar10+model~resnet110+loss~isomaxplus_no_no_no_final" -gpu 0 -x 10
python detect.py --dir ood --dataset cifar10 --net_type densenetbc100 --loss softmax_no_no_no_final --gpu 0 -x 10
python detect.py --dir ood --dataset cifar10 --net_type densenetbc100 --loss isomax_no_no_no_final --gpu 0 -x 10
python detect.py --dir ood --dataset cifar10 --net_type densenetbc100 --loss isomaxplus_no_no_no_final --gpu 0 -x 10
python detect.py --dir ood --dataset cifar10 --net_type resnet110 --loss softmax_no_no_no_final --gpu 0 -x 10
python detect.py --dir ood --dataset cifar10 --net_type resnet110 --loss isomax_no_no_no_final --gpu 0 -x 10
python detect.py --dir ood --dataset cifar10 --net_type resnet110 --loss isomaxplus_no_no_no_final --gpu 0 -x 10