-
Notifications
You must be signed in to change notification settings - Fork 3
/
run_cifar10_densenetbc100.sh
executable file
·21 lines (16 loc) · 1.51 KB
/
run_cifar10_densenetbc100.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env bash
python train.py --dir all --dataset cifar10 --model densenetbc100 --loss softmax_none -x 10 --gpu 0
python calibrate.py --dir all --dataset cifar10 --model densenetbc100 --loss softmax_none -x 10 --gpu 0
python detect.py --dir all --dataset cifar10 --model densenetbc100 --loss softmax_none -x 10 --gpu 0
python train.py --dir all --dataset cifar10 --model densenetbc100 --loss isomax_none -x 10 --gpu 0
python calibrate.py --dir all --dataset cifar10 --model densenetbc100 --loss isomax_none -x 10 --gpu 0
python detect.py --dir all --dataset cifar10 --model densenetbc100 --loss isomax_none -x 10 --gpu 0
python train.py --dir all --dataset cifar10 --model densenetbc100 --loss isomaxplus_none -x 10 --gpu 0
python calibrate.py --dir all --dataset cifar10 --model densenetbc100 --loss isomaxplus_none -x 10 --gpu 0
python detect.py --dir all --dataset cifar10 --model densenetbc100 --loss isomaxplus_none -x 10 --gpu 0
python train.py --dir all --dataset cifar10 --model densenetbc100 --loss dismax_none -x 10 --gpu 0
python calibrate.py --dir all --dataset cifar10 --model densenetbc100 --loss dismax_none -x 10 --gpu 0
python detect.py --dir all --dataset cifar10 --model densenetbc100 --loss dismax_none -x 10 --gpu 0
python train.py --dir all --dataset cifar10 --model densenetbc100 --loss dismax_fpr -x 10 --gpu 0
python calibrate.py --dir all --dataset cifar10 --model densenetbc100 --loss dismax_fpr -x 10 --gpu 0
python detect.py --dir all --dataset cifar10 --model densenetbc100 --loss dismax_fpr -x 10 --gpu 0