-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsimple_input.yaml
More file actions
49 lines (44 loc) · 913 Bytes
/
simple_input.yaml
File metadata and controls
49 lines (44 loc) · 913 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
---
data:
data_path: df_cn_spectra_pure_binary.csv
target_col_name: cn_coalesced
index_col_name: name
plot:
- 2D spectra
# - all spectra
# - train distribution
# - test distribution
# - overall distribution
# - Kfold 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_5
- smoothing_50
feature_transformations:
- "None"
- PCA:
number: all
- PCA:
number: 5
- smoothing:
n_points: 50
models:
- dummy_average
- Lasso
- ElasticNet
- RandomForest
- AdaBoost
- TPOT