-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathExp_Run.sh
More file actions
executable file
·52 lines (51 loc) · 3.69 KB
/
Exp_Run.sh
File metadata and controls
executable file
·52 lines (51 loc) · 3.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
for s in 1 2 3 4 5; do
python3 ShortestPathExpBaseline.py --model_name SPO --grid_size 15 --seed $s
python3 ShortestPathExpBaseline.py --model_name SCE --grid_size 15 --seed $s
python3 ShortestPathExpBaseline.py --model_name PFL --grid_size 15 --seed $s
python3 ShortestPathExpBaseline.py --model_name PFY --grid_size 15 --seed $s
python3 ShortestPathExpBaseline.py --model_name CAVE --grid_size 15 --seed $s
python3 ShortestPathExpBaseline.py --model_name CVX-Squared --grid_size 15 --seed $s
python3 ShortestPathExpBaseline.py --model_name CVX-Regret --grid_size 15 --seed $s
python3 ShortestPathExpBaseline.py --model_name CVX-SPO --grid_size 15 --seed $s
python3 ShortestPathExpBaseline.py --model_name CVX-SCE --grid_size 15 --seed $s
done
for s in 1 2 3 4 5; do
python3 KnapsackExpBaseline.py --model_name SPO --num_items 400 --seed $s
python3 KnapsackExpBaseline.py --model_name SCE --num_items 400 --seed $s
python3 KnapsackExpBaseline.py --model_name PFL --num_items 400 --seed $s
python3 KnapsackExpBaseline.py --model_name PFY --num_items 400 --seed $s
python3 KnapsackExpBaseline.py --model_name CAVE --num_items 400 --seed $s
python3 KnapsackExpBaseline.py --model_name CVX-Squared --num_items 400 --seed $s
python3 KnapsackExpBaseline.py --model_name CVX-Regret --num_items 400 --seed $s
python3 KnapsackExpBaseline.py --model_name CVX-SPO --num_items 400 --seed $s
python3 KnapsackExpBaseline.py --model_name CVX-SCE --num_items 400 --seed $s
done
for s in 1 2 3 4 5; do
python3 FacilityLocationExpBaseline.py --model_name SPO --num_customers 200 --num_facilities 10 --seed $s
python3 FacilityLocationExpBaseline.py --model_name SCE --num_customers 200 --num_facilities 10 --seed $s
python3 FacilityLocationExpBaseline.py --model_name PFL --num_customers 200 --num_facilities 10 --seed $s
python3 FacilityLocationExpBaseline.py --model_name PFY --num_customers 200 --num_facilities 10 --seed $s
python3 FacilityLocationExpBaseline.py --model_name CAVE --num_customers 200 --num_facilities 10 --seed $s
python3 FacilityLocationExpBaseline.py --model_name CVX-Squared --num_customers 200 --num_facilities 10 --seed $s
python3 FacilityLocationExpBaseline.py --model_name CVX-Regret --num_customers 200 --num_facilities 10 --seed $s
python3 FacilityLocationExpBaseline.py --model_name CVX-SPO --num_customers 200 --num_facilities 10 --seed $s
python3 FacilityLocationExpBaseline.py --model_name CVX-SCE --num_customers 200 --num_facilities 10 --seed $s
done
for s in 1 2 3 4 5; do
python3 ShortestPathExpDYS.py --model_name DYS-Squared --grid_size 15 --seed $s
python3 ShortestPathExpDYS.py --model_name DYS-Regret --grid_size 15 --seed $s
python3 ShortestPathExpDYS.py --model_name DYS-SPO --grid_size 15 --seed $s
python3 ShortestPathExpDYS.py --model_name DYS-SCE --grid_size 15 --seed $s
done
for s in 1 2 3 4 5; do
python3 FacilityLocationExpDYS.py --model_name DYS-Squared --num_customers 200 --num_facilities 10 --seed $s
python3 FacilityLocationExpDYS.py --model_name DYS-Regret --num_customers 200 --num_facilities 10 --seed $s
python3 FacilityLocationExpDYS.py --model_name DYS-SPO --num_customers 200 --num_facilities 10 --seed $s
python3 FacilityLocationExpDYS.py --model_name DYS-SCE --num_customers 200 --num_facilities 10 --seed $s
done
for s in 1 2 3 4 5; do
python3 KnapsackExpDYS.py --model_name DYS-Squared --num_items 400 --seed $s
python3 KnapsackExpDYS.py --model_name DYS-Regret --num_items 400 --seed $s
python3 KnapsackExpDYS.py --model_name DYS-SPO --num_items 400 --seed $s
python3 KnapsackExpDYS.py --model_name DYS-SCE --num_items 400 --seed $s
done