forked from iUssel/MiningPersonalityInGerman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_models.yml
117 lines (116 loc) · 1.89 KB
/
config_models.yml
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
liwcModelSelection:
# Decision Tree
DecisionTree: # actual class name
criterion:
- 'mse'
splitter:
- 'best'
max_depth:
- 5
min_samples_split:
- 2
min_samples_leaf:
- 50
random_state:
- 0
# Ridge
RidgeRegression:
alpha:
- 10.0
random_state:
- 0
# GaussianProcessRegressor
GaussianProcessRegressor:
n_restarts_optimizer:
- 0
random_state:
- 0
# RandomForest
RandomForest:
criterion:
- 'mse'
n_estimators:
- 100
max_depth:
- 10
min_samples_split:
- 5
min_samples_leaf:
- 10
max_leaf_nodes:
- # None # recommended for Regression
max_features:
- # None # recommended for Regression
random_state:
- 0
# BayesianRidge
BayesianRidge:
n_iter:
- 10
SupportVectorMachine:
kernel:
- 'rbf'
C:
- 10
epsilon:
- 0.1
max_iter:
- 100
gloveModelSelection:
# # Decision Tree
# DecisionTree: # actual class name
# criterion:
# - 'mse'
# splitter:
# - 'best'
# max_depth:
# - 4
# min_samples_split:
# - 2
# min_samples_leaf:
# - 50
# random_state:
# - 0
# Ridge
RidgeRegression:
alpha:
- 20
random_state:
- 0
# # GaussianProcessRegressor
# GaussianProcessRegressor:
# n_restarts_optimizer:
# - 3
# random_state:
# - 0
# # RandomForest
# RandomForest:
# criterion:
# - 'mse'
# n_estimators:
# - 50
# max_depth:
# - 5
# min_samples_split:
# - 2
# min_samples_leaf:
# - 10
# max_leaf_nodes:
# - # None
# max_features:
# - 450
# random_state:
# - 0
# # BayesianRidge
# BayesianRidge:
# n_iter:
# - 25
# SupportVectorMachine:
# kernel:
# - 'linear'
# C:
# - 0.01
# epsilon:
# - 0.1
# max_iter:
# - 300