-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.ini
36 lines (28 loc) · 851 Bytes
/
config.ini
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
[DATA]
x_data = D:\MLE\4-5\mle-template\data\Iris_X.csv
y_data = D:\MLE\4-5\mle-template\data\Iris_y.csv
[SPLIT_DATA]
x_train = D:\MLE\4-5\mle-template\data\Train_Iris_X.csv
y_train = D:\MLE\4-5\mle-template\data\Train_Iris_y.csv
x_test = D:\MLE\4-5\mle-template\data\Test_Iris_X.csv
y_test = D:\MLE\4-5\mle-template\data\Test_Iris_y.csv
[D_TREE]
criterion = entropy
path = D:\MLE\4-5\mle-template\experiments\d_tree.sav
[GNB]
path = D:\MLE\4-5\mle-template\experiments\gnb.sav
[KNN]
n_neighbors = 5
metric = minkowski
p = 2
path = D:\MLE\4-5\mle-template\experiments\knn.sav
[LOG_REG]
path = D:\MLE\4-5\mle-template\experiments\log_reg.sav
[RAND_FOREST]
n_estimators = 100
criterion = entropy
path = D:\MLE\4-5\mle-template\experiments\rand_forest.sav
[SVM]
kernel = linear
random_state = 0
path = D:\MLE\4-5\mle-template\experiments\svm.sav