-
Notifications
You must be signed in to change notification settings - Fork 0
/
inner_run.sh
executable file
·40 lines (40 loc) · 1.59 KB
/
inner_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
32
33
34
35
36
37
38
39
40
g++ -o marginals marginals.c
./marginals
python ../collate_marginals.py marginals.csv computed_shapley_value.py
g++ -O3 -o run_SEBM run_SEBM.c
python ./run_methods.py
./run_SEBM 10
./run_SEBM 50
./run_SEBM 100
./run_SEBM 500
./run_SEBM 1000
echo "maleki"
python compute_error.py ./data_out_maleki_2250.csv
python compute_error.py ./data_out_maleki_11250.csv
python compute_error.py ./data_out_maleki_22500.csv
python compute_error.py ./data_out_maleki_112500.csv
python compute_error.py ./data_out_maleki_225000.csv
echo "simple"
python compute_error.py ./data_out_simple_2250.csv
python compute_error.py ./data_out_simple_11250.csv
python compute_error.py ./data_out_simple_22500.csv
python compute_error.py ./data_out_simple_112500.csv
python compute_error.py ./data_out_simple_225000.csv
echo "castro"
python compute_error.py ./data_out_castro_2250.csv
python compute_error.py ./data_out_castro_11250.csv
python compute_error.py ./data_out_castro_22500.csv
python compute_error.py ./data_out_castro_112500.csv
python compute_error.py ./data_out_castro_225000.csv
echo "sebm"
python compute_error.py ./data_out_SEBM_2250.csv
python compute_error.py ./data_out_SEBM_11250.csv
python compute_error.py ./data_out_SEBM_22500.csv
python compute_error.py ./data_out_SEBM_112500.csv
python compute_error.py ./data_out_SEBM_225000.csv
echo "appro"
python compute_error.py ./data_out_approshapley_2250.csv
python compute_error.py ./data_out_approshapley_11250.csv
python compute_error.py ./data_out_approshapley_22500.csv
python compute_error.py ./data_out_approshapley_112500.csv
python compute_error.py ./data_out_approshapley_225000.csv