-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpca_input.yaml
More file actions
55 lines (46 loc) · 932 Bytes
/
pca_input.yaml
File metadata and controls
55 lines (46 loc) · 932 Bytes
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
52
53
54
55
---
data:
data_path: ../Fdf_cn_spectra_pure_binary.csv
target_col_name: cn_coalesced
index_col_name: name
plot:
- train distribution
- test distribution
cleaning:
pre_split_cleaning:
nan: mean
post_split_cleaning:
normalize: overall min max
validation:
holdout_fraction: 0.2
parameters_file: narrow_search.yaml
Kfold:
nsplits: 5
random_seed: 42
transformations:
transform_names:
- No_transform
- PCA_all
- PCA_30
- PCA_20
- PCA_10
- PCA_5
feature_transformations:
- "None"
- PCA:
number: all
- PCA:
number: 30
- PCA:
number: 20
- PCA:
number: 10
- PCA:
number: 5
models:
- dummy_average
- Lasso
- ElasticNet
- RandomForest
- AdaBoost
- TPOT