-
Notifications
You must be signed in to change notification settings - Fork 10
/
run_cifar100.sh
executable file
·15 lines (13 loc) · 1.42 KB
/
run_cifar100.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~cifar100+model~densenetbc100+loss~softmax_no_no_no_final" -gpu 0 -x 10
python main.py -ei="ood" -et "train_classify" -ec "data~cifar100+model~densenetbc100+loss~isomax_no_no_no_final" -gpu 0 -x 10
python main.py -ei="ood" -et "train_classify" -ec "data~cifar100+model~densenetbc100+loss~isomaxplus_no_no_no_final" -gpu 0 -x 10
python main.py -ei="ood" -et "train_classify" -ec "data~cifar100+model~resnet110+loss~softmax_no_no_no_final" -gpu 0 -x 10
python main.py -ei="ood" -et "train_classify" -ec "data~cifar100+model~resnet110+loss~isomax_no_no_no_final" -gpu 0 -x 10
python main.py -ei="ood" -et "train_classify" -ec "data~cifar100+model~resnet110+loss~isomaxplus_no_no_no_final" -gpu 0 -x 10
python detect.py --dir ood --dataset cifar100 --net_type densenetbc100 --loss softmax_no_no_no_final --gpu 0 -x 10
python detect.py --dir ood --dataset cifar100 --net_type densenetbc100 --loss isomax_no_no_no_final --gpu 0 -x 10
python detect.py --dir ood --dataset cifar100 --net_type densenetbc100 --loss isomaxplus_no_no_no_final --gpu 0 -x 10
python detect.py --dir ood --dataset cifar100 --net_type resnet110 --loss softmax_no_no_no_final --gpu 0 -x 10
python detect.py --dir ood --dataset cifar100 --net_type resnet110 --loss isomax_no_no_no_final --gpu 0 -x 10
python detect.py --dir ood --dataset cifar100 --net_type resnet110 --loss isomaxplus_no_no_no_final --gpu 0 -x 10