-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_stl.sh
14 lines (14 loc) · 836 Bytes
/
run_stl.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
cd stl_experiments/experiments
# repeat six times for different seeds
for i in {1..6};
do
./stl10_single.sh --augment --S 1 --deltaorth --model rbffdwrn16_8_stl --restrict 3
./stl10_single.sh --augment --S 1 --deltaorth --model rbffdwrn16_8_stl --N 4 --restrict 2
./stl10_single.sh --augment --S 1 --deltaorth --model diffopwrn16_8_stl --N 4 --restrict 2
./stl10_single.sh --augment --S 1 --deltaorth --model diffopwrn16_8_stl --restrict 3
./stl10_single.sh --augment --S 1 --deltaorth --model gausswrn16_8_stl --restrict 3
./stl10_single.sh --augment --S 1 --deltaorth --model gausswrn16_8_stl --N 4 --restrict 2
./stl10_single.sh --augment --S 1 --deltaorth --model e2wrn16_8_stl --N 8 --restrict 3
./stl10_single.sh --augment --S 1 --deltaorth --model e2wrn16_8_stl --N 4 --restrict 2
done