-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrun.sh
35 lines (30 loc) · 1.71 KB
/
run.sh
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
#!/bin/bash
#here are all the experiments, in the format of "python3 run.py algo_name init_lr end_lr init_eps end_eps max_iter"
python3 run.py Q_offpolicy 0.15 0.001 1.0 0.001 1000000.0
python3 run.py friendQ_2Q 0.15 0.001 1.0 0.001 1000000.0
python3 run.py friendQ_1Q 0.15 0.001 1.0 0.001 1000000.0
python3 run.py Q_offpolicy 0.15 0.001 1.0 1.0 1000000.0
python3 run.py friendQ_2Q 0.15 0.001 1.0 1.0 1000000.0
python3 run.py friendQ_1Q 0.15 0.001 1.0 1.0 1000000.0
python3 run.py foeQ_2Q 0.9 0.001 1.0 0.001 1000000.0
python3 run.py foeQ_1Q_2LP 0.9 0.001 1.0 0.001 1000000.0
python3 run.py foeQ_1Q_1LP 0.9 0.001 1.0 0.001 1000000.0
python3 run.py ceQ 0.9 0.001 1.0 0.001 1000000.0
python3 run.py foeQ_2Q 0.9 0.001 1.0 1.0 1000000.0
python3 run.py foeQ_1Q_2LP 0.9 0.001 1.0 1.0 1000000.0
python3 run.py foeQ_1Q_1LP 0.9 0.001 1.0 1.0 1000000.0
python3 run.py ceQ 0.9 0.001 1.0 1.0 1000000.0
python3 run.py friendQ_2Q_alt 0.15 0.001 1.0 0.001 1000000.0
python3 run.py friendQ_2Q_alt 0.9 0.001 1.0 0.001 1000000.0
python3 run.py friendQ_2Q_alt 0.5 0.001 1.0 0.001 1000000.0
python3 run.py friendQ_2Q_alt 0.5 0.001 1.0 1.0 1000000.0
python3 run.py friendQ_2Q_alt 0.9 0.001 1.0 1.0 1000000.0
python3 run.py friendQ_2Q_alt 0.15 0.001 1.0 1.0 1000000.0
python3 run.py friendQ_1Q_alt 0.15 0.001 1.0 1.0 1000000.0
python3 run.py friendQ_1Q_alt 0.5 0.001 1.0 1.0 1000000.0
python3 run.py friendQ_1Q_alt 0.9 0.001 1.0 1.0 1000000.0
python3 run.py friendQ_1Q_alt 0.15 0.001 1.0 0.001 1000000.0
python3 run.py friendQ_2Q_alt 0.22 0.001 1.0 0.001 1000000.0
python3 run.py friendQ_2Q_alt 0.22 0.001 1.0 1.0 1000000.0
python3 run.py friendQ_1Q_alt 0.22 0.001 1.0 0.001 1000000.0
python3 run.py friendQ_1Q_alt 0.22 0.001 1.0 1.0 1000000.0