-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcross_validation_main.py
45 lines (32 loc) · 1.02 KB
/
cross_validation_main.py
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
##############################
print('loading libraries and modules used...')
execfile('src/imports.py')
print('end loading libraries and modules...')
##############################
print('loading data to analyse...')
execfile('src/load_data.py')
print('done loading data...')
##############################
print('Starting neural networks...')
execfile('src/results_nn.py')
print('neural networks ended...')
##############################
print('Starting RF OVR...')
execfile('src/rf_ovr.py')
print('RF OVR ended...')
##############################
print('Starting RF multiclass...')
execfile('src/rf_multi.py')
print('RF multiclass ended...')
##############################
print('Starting SVM OVR linear kernel...')
execfile('src/svm_ovr_linear.py')
print('SVM OVR linear kernel ended...')
##############################
print('Starting SVM OVR rbf kernel...')
execfile('src/svm_ovr_kernel.py')
print('SVM OVR rbf kernel ended...')
##############################
print('Starting QDA...')
execfile('src/qda.py')
print('QDA ended...')