-
Notifications
You must be signed in to change notification settings - Fork 3
/
run_cifar100_resnet34.sh
executable file
·21 lines (16 loc) · 1.45 KB
/
run_cifar100_resnet34.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 cifar100 --model resnet34 --loss softmax_none -x 10 --gpu 0
python calibrate.py --dir all --dataset cifar100 --model resnet34 --loss softmax_none -x 10 --gpu 0
python detect.py --dir all --dataset cifar100 --model resnet34 --loss softmax_none -x 10 --gpu 0
python train.py --dir all --dataset cifar100 --model resnet34 --loss isomax_none -x 10 --gpu 0
python calibrate.py --dir all --dataset cifar100 --model resnet34 --loss isomax_none -x 10 --gpu 0
python detect.py --dir all --dataset cifar100 --model resnet34 --loss isomax_none -x 10 --gpu 0
python train.py --dir all --dataset cifar100 --model resnet34 --loss isomaxplus_none -x 10 --gpu 0
python calibrate.py --dir all --dataset cifar100 --model resnet34 --loss isomaxplus_none -x 10 --gpu 0
python detect.py --dir all --dataset cifar100 --model resnet34 --loss isomaxplus_none -x 10 --gpu 0
python train.py --dir all --dataset cifar100 --model resnet34 --loss dismax_none -x 10 --gpu 0
python calibrate.py --dir all --dataset cifar100 --model resnet34 --loss dismax_none -x 10 --gpu 0
python detect.py --dir all --dataset cifar100 --model resnet34 --loss dismax_none -x 10 --gpu 0
python train.py --dir all --dataset cifar100 --model resnet34 --loss dismax_fpr -x 10 --gpu 0
python calibrate.py --dir all --dataset cifar100 --model resnet34 --loss dismax_fpr -x 10 --gpu 0
python detect.py --dir all --dataset cifar100 --model resnet34 --loss dismax_fpr -x 10 --gpu 0