-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRNAEEG.py
82 lines (63 loc) · 2.1 KB
/
RNAEEG.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
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
from keras.models import Sequential
from keras.layers import Dense
from pathlib import Path
import numpy
#tf.keras.backend.clear_session() # Reseteo sencillo
#from tensorflow.keras import utils
#from tensorflow.keras import layers
model = Sequential()
model.add(Dense(20, input_dim=42, activation='relu'))
model.add(Dense(20, activation='relu'))
model.add(Dense(20, activation='relu'))
model.add(Dense(1, activation='sigmoid'))
model.summary()
import warnings
warnings.filterwarnings('ignore')
# Fija las semillas aleatorias para la reproductibilidad
numpy.random.seed(7)
# carga los datos
pe = Path('data/Records/Raw/Processed/EEG_train.csv')
dataset1 = numpy.loadtxt(pe, delimiter=",")
# DATOS PARA ENTRENAMIENTO
# dividido en variables de entrada (X) y salida (Y)
X = dataset1[:,0:42]
Y = dataset1[:,42]
print(X)
print(Y)
# DATOS PARA VALIDACIÓN
pv = Path('data/Records/Raw/Processed/EEG_test.csv')
dataset2 = numpy.loadtxt(pv, delimiter=",")
# dividido en variables de entrada (W) y salida (Z)
W = dataset2[:,0:42]
Z = dataset2[:,42]
print(W)
print(Z)
# Compila el modelo
model.compile(loss='binary_crossentropy', optimizer='adam', metrics=['accuracy'])
# Ajusta el modelo
# SE LE CARGAN LOS DATOS DE ENTRENAMIENTO
model.fit(X, Y, epochs=500, batch_size=10)
# VALIDACIÓN
# test del modelo. con los nuevos datos
test_loss, test_acc = model.evaluate(W, Z)
print('Precision del test:', test_acc)
# calcula las predicciones
predictions = model.predict(W)
print(W)
print(predictions)
# redondeamos las predicciones
rounded = [round(x[0]) for x in predictions]
print(rounded)
#importar metrics para usar la matriz de confusión
from sklearn import metrics
# creamos la matriz de confusion
confusion_matrix = metrics.confusion_matrix(Z,rounded)
# presentar claramente la matriz de confusion
# para eso la convertimos a tabla
cm_display = metrics.ConfusionMatrixDisplay(confusion_matrix = confusion_matrix, display_labels = [False, True])
# como queremos imprimir la matriz de confusion,
# importamos librería para graficar
import matplotlib.pyplot as plt
# Desplegamos la matriz de confusión
cm_display.plot()
plt.show()