-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperiments.sh
More file actions
executable file
·38 lines (31 loc) · 2.8 KB
/
Copy pathexperiments.sh
File metadata and controls
executable file
·38 lines (31 loc) · 2.8 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
# MC data generation
python3 utils/mc_data_generation.py --problem Branches --d 40
python3 utils/mc_data_generation.py --problem Branches --d 60
python3 utils/mc_data_generation.py --problem Oscillator --d 100
python3 utils/mc_data_generation.py --problem Oscillator --d 200
python3 utils/mc_data_generation.py --problem F16GCAS
# MPPCA-CEIS experiments
python3 experiments.py --problem "branches" --is_method "CE" --proposal "MPPCA" --n_features 40 --n_components 8 --n_factors 8
python3 experiments.py --problem "branches" --is_method "SIS" --proposal "MPPCA" --n_features 40 --n_components 8 --n_factors 8
python3 experiments.py --problem "branches" --is_method "CE" --proposal "GMM" --n_features 40 --n_components 8
python3 experiments.py --problem "branches" --is_method "SIS" --proposal "GMM" --n_features 40 --n_components 8
python3 experiments.py --problem "branches" --is_method "CE" --proposal "MPPCA" --n_features 60 --n_components 8 --n_factors 8
python3 experiments.py --problem "branches" --is_method "SIS" --proposal "MPPCA" --n_features 60 --n_components 8 --n_factors 8
python3 experiments.py --problem "branches" --is_method "CE" --proposal "GMM" --n_features 60 --n_components 8
python3 experiments.py --problem "branches" --is_method "SIS" --proposal "GMM" --n_features 60 --n_components 8
python3 experiments.py --problem "oscillator" --is_method "CE" --proposal "MPPCA" --n_features 100 --n_components 8 --n_factors 8
python3 experiments.py --problem "oscillator" --is_method "SIS" --proposal "MPPCA" --n_features 100 --n_components 8 --n_factors 8
python3 experiments.py --problem "oscillator" --is_method "CE" --proposal "GMM" --n_features 100 --n_components 8
python3 experiments.py --problem "oscillator" --is_method "SIS" --proposal "GMM" --n_features 100 --n_components 8
python3 experiments.py --problem "oscillator" --is_method "CE" --proposal "MPPCA" --n_features 200 --n_components 8 --n_factors 8
python3 experiments.py --problem "oscillator" --is_method "SIS" --proposal "MPPCA" --n_features 200 --n_components 8 --n_factors 8
python3 experiments.py --problem "oscillator" --is_method "CE" --proposal "GMM" --n_features 200 --n_components 8
python3 experiments.py --problem "oscillator" --is_method "SIS" --proposal "GMM" --n_features 200 --n_components 8
python3 experiments.py --problem "f16gcas" --is_method "CE" --proposal "MPPCA" --n_features 202 --n_components 8 --n_factors 8
python3 experiments.py --problem "f16gcas" --is_method "SIS" --proposal "MPPCA" --n_features 202 --n_components 8 --n_factors 8
python3 experiments.py --problem "f16gcas" --is_method "CE" --proposal "GMM" --n_features 202 --n_components 8
python3 experiments.py --problem "f16gcas" --is_method "SIS" --proposal "GMM" --n_features 202 --n_components 8
# results table
python3 utils/results_table.py
# results figure
python3 utils/results_fig.py