-
Notifications
You must be signed in to change notification settings - Fork 0
/
cnn.py
342 lines (283 loc) · 14.5 KB
/
cnn.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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
import numpy as np
import tensorflow as tf
import random as rn
import os
import random
import statistics as st
import seaborn as sns
import matplotlib
import matplotlib.pyplot as plt
import pickle
import pandas as pd
from keras.models import Sequential
from keras.layers import Dense, Activation, Input, LSTM, Embedding, Dropout, GRU, Bidirectional
from keras.layers import Flatten, Conv1D, MaxPooling1D, GlobalMaxPooling1D
from keras import regularizers
from keras.layers.normalization import BatchNormalization
from keras.models import Model
from keras import metrics
from keras.callbacks import EarlyStopping
from keras.optimizers import Adam
from sklearn.model_selection import train_test_split
from sklearn.model_selection import StratifiedKFold, KFold
from sklearn.metrics import brier_score_loss, precision_score, recall_score, f1_score
from sklearn.metrics import confusion_matrix
from sklearn.metrics import roc_curve,auc
from sklearn.metrics import accuracy_score
from sklearn.metrics import log_loss
def get_variables_cluster():
# Reading tokenized notes from panda files
df = pd.read_hdf('//home//srajendr//PandaFiles//tokenized_notes.h5')
notes = df.values.tolist()
# Reading word2vec word embedding matrix from Panda Files and converting to numpy array
df = pd.read_hdf('//home//srajendr//PandaFiles//embedding_matrix_w2v.h5')
embedding_matrix_w2v = df.to_numpy()
# Reading Google word embedding matrix from Panda Files and converting to numpy array
df = pd.read_hdf('//home//srajendr//PandaFiles//embedding_matrix_GNV.h5')
embedding_matrix_GNV = df.to_numpy()
# Reading word index from Pickle
f = open('//home//srajendr//PickleFiles//word_index.pckl', 'rb')
word_index = pickle.load(f)
f.close()
# Reading max length from Pickle
f = open('//home//srajendr//PickleFiles//max_len.pckl', 'rb')
max_len = pickle.load(f)
f.close()
# Reading tokenized notes eff from panda files
df = pd.read_hdf('//home//srajendr//PandaFiles//tokenized_notes_eff.h5')
notes_eff = df.values.tolist()
# Reading word2vec word embedding matrix eff from Panda Files and converting to numpy array
df = pd.read_hdf('//home//srajendr//PandaFiles//embedding_matrix_w2v_eff.h5')
embedding_matrix_w2v_eff = df.to_numpy()
# Reading Google word embedding matrix eff from Panda Files and converting to numpy array
df = pd.read_hdf('//home//srajendr//PandaFiles//embedding_matrix_GNV_eff.h5')
embedding_matrix_GNV_eff = df.to_numpy()
# Reading word index eff from Pickle
f = open('//home//srajendr//PickleFiles//word_index_eff.pckl', 'rb')
word_index_eff = pickle.load(f)
f.close()
# Reading max length eff from Pickle
f = open('//home//srajendr//PickleFiles//max_len_eff.pckl', 'rb')
max_len_eff = pickle.load(f)
f.close()
# Reading binary labels
f = open('//home//srajendr//PickleFiles//binary_labels.pckl', 'rb')
binary_labels = pickle.load(f)
f.close()
# Reading categorical labels
f = open('//home//srajendr//PickleFiles//categorical_labels.pckl', 'rb')
categorical_labels = pickle.load(f)
f.close()
return notes, embedding_matrix_w2v, embedding_matrix_GNV, word_index, max_len, notes_eff, embedding_matrix_w2v_eff, embedding_matrix_GNV_eff, word_index_eff, max_len_eff, binary_labels, categorical_labels
def get_variables_local():
# Reading tokenized notes from panda files
df = pd.read_hdf('PandaFiles/tokenized_notes.h5')
notes = df.values.tolist()
# Reading word2vec word embedding matrix from Panda Files and converting to numpy array
df = pd.read_hdf('PandaFiles/embedding_matrix_w2v.h5')
embedding_matrix_w2v = df.to_numpy()
# Reading Google word embedding matrix from Panda Files and converting to numpy array
df = pd.read_hdf('PandaFiles/embedding_matrix_GNV.h5')
embedding_matrix_GNV = df.to_numpy()
# Reading word index from Pickle
f = open('PickleFiles/word_index.pckl', 'rb')
word_index = pickle.load(f)
f.close()
# Reading max length from Pickle
f = open('PickleFiles/max_len.pckl', 'rb')
max_len = pickle.load(f)
f.close()
# Reading tokenized notes eff from panda files
df = pd.read_hdf('PandaFiles/tokenized_notes_eff.h5')
notes_eff = df.values.tolist()
# Reading word2vec word embedding matrix eff from Panda Files and converting to numpy array
df = pd.read_hdf('PandaFiles/embedding_matrix_w2v_eff.h5')
embedding_matrix_w2v_eff = df.to_numpy()
# Reading Google word embedding matrix eff from Panda Files and converting to numpy array
df = pd.read_hdf('PandaFiles/embedding_matrix_GNV_eff.h5')
embedding_matrix_GNV_eff = df.to_numpy()
# Reading word index eff from Pickle
f = open('PickleFiles/word_index_eff.pckl', 'rb')
word_index_eff = pickle.load(f)
f.close()
# Reading max length eff from Pickle
f = open('PickleFiles/max_len_eff.pckl', 'rb')
max_len_eff = pickle.load(f)
f.close()
# Reading binary labels
f = open('PickleFiles/binary_labels.pckl', 'rb')
binary_labels = pickle.load(f)
f.close()
# Reading categorical labels
f = open('PickleFiles/categorical_labels.pckl', 'rb')
categorical_labels = pickle.load(f)
f.close()
return notes, embedding_matrix_w2v, embedding_matrix_GNV, word_index, max_len, notes_eff, embedding_matrix_w2v_eff, embedding_matrix_GNV_eff, word_index_eff, max_len_eff, binary_labels, categorical_labels
def make_whole_labels():
# Binary Labels
X_train_b, X_test_b, y_train_b, y_test_b = train_test_split(notes, binary_labels, test_size=0.33, random_state=39)
X_train_b = np.array(X_train_b)
X_test_b = np.array(X_test_b)
# Categorical Labels
X_train_c, X_test_c, y_train_c, y_test_c = train_test_split(notes, categorical_labels, test_size=0.33, random_state=39)
X_train_c = np.array(X_train_c)
X_test_c = np.array(X_test_c)
return X_train_b, X_test_b, y_train_b, y_test_b, X_train_c, X_test_c, y_train_c, y_test_c
def make_eff_labels():
# Binary Labels
X_train_b, X_test_b, y_train_b, y_test_b = train_test_split(notes_eff, binary_labels, test_size=0.33, random_state=39)
X_train_b = np.array(X_train_b)
X_test_b = np.array(X_test_b)
# Categorical Labels
X_train_c, X_test_c, y_train_c, y_test_c = train_test_split(notes_eff, categorical_labels, test_size=0.33, random_state=39)
X_train_c = np.array(X_train_c)
X_test_c = np.array(X_test_c)
return X_train_b, X_test_b, y_train_b, y_test_b, X_train_c, X_test_c, y_train_c, y_test_c
#sbatch --no-requeue : command to not repeat
# Choose which setting you are running the model in and comment one othe two next lines out
notes, embedding_matrix_w2v, embedding_matrix_GNV, word_index, max_len, notes_eff, embedding_matrix_w2v_eff, embedding_matrix_GNV_eff, word_index_eff, max_len_eff, binary_labels, categorical_labels = get_variables_cluster()
#notes, embedding_matrix_w2v, embedding_matrix_GNV, word_index, max_len, notes_eff, embedding_matrix_w2v_eff, embedding_matrix_GNV_eff, word_index_eff, max_len_eff, binary_labels, categorical_labels = get_variables_local()
X_train_b, X_test_b, y_train_b, y_test_b, X_train_c, X_test_c, y_train_c, y_test_c = make_eff_labels()
#X_train_b, X_test_b, y_train_b, y_test_b, X_train_c, X_test_c, y_train_c, y_test_c = make_whole_labels()
# # temporary for local testing:
# X_train_b = X_train_b[:10]
# y_train_b = y_train_b[:10]
# X_test_b = X_test_b[:][:10]
# y_test_b = y_test_b[:][:10]
# X_train_c = X_train_c[:10]
# y_train_c = y_train_c[:10]
# X_test_c = X_test_c[:][:10]
# y_test_c = y_test_c[:][:10]
# create a plot for the model
def plot_model_history(model_history):
fig, axs = plt.subplots(1,2,figsize=(15,5))
del fig
# summarize history for accuracy
axs[0].plot(range(1,len(model_history.history['acc'])+1),model_history.history['acc'])
axs[0].plot(range(1,len(model_history.history['val_acc'])+1),model_history.history['val_acc'])
axs[0].set_title('Model Accuracy')
axs[0].set_ylabel('Accuracy')
axs[0].set_xlabel('Epoch')
axs[0].set_xticks(np.arange(1,len(model_history.history['acc'])+1),len(model_history.history['acc'])/10)
axs[0].legend(['train', 'val'], loc='best')
# summarize history for loss
axs[1].plot(range(1,len(model_history.history['loss'])+1),model_history.history['loss'])
axs[1].plot(range(1,len(model_history.history['val_loss'])+1),model_history.history['val_loss'])
axs[1].set_title('Model Loss')
axs[1].set_ylabel('Loss')
axs[1].set_xlabel('Epoch')
axs[1].set_xticks(np.arange(1,len(model_history.history['loss'])+1),len(model_history.history['loss'])/10)
axs[1].legend(['train', 'val'], loc='best')
plt.show()
def evaluate_model(metrics, categorical, model, y_test, X_test):
y_pred=model.predict(X_test,verbose=1)
if (categorical): ##Check this out, weird##
y_pred_coded = (y_pred == y_pred.max(axis=1)[:,None]).astype(int)
metric=[]
metric.append(['f1score',f1_score(y_test,y_pred_coded, average='weighted')])
metric.append(['precision',precision_score(y_test,y_pred_coded, average='weighted')])
metric.append(['recall',recall_score(y_test,y_pred_coded, average='weighted')])
metric.append(['accuracy',accuracy_score(y_test,y_pred_coded)])
print(metric)
metrics.append(metric)
else:
y_pred_coded=np.where(y_pred>0.5,1,0)
y_pred_coded=y_pred_coded.flatten()
metric=[]
metric.append(['f1score',f1_score(y_test,y_pred_coded)])
metric.append(['precision',precision_score(y_test,y_pred_coded)])
metric.append(['recall',recall_score(y_test,y_pred_coded)])
metric.append(['accuracy',accuracy_score(y_test,y_pred_coded)])
print(metric)
metrics.append(metric)
return metrics, y_pred
#################################################################################################
# Create CNN model
def CNN_model(word_index, embedding_matrix, max_len, categorical):
model = Sequential()
optm = Adam(lr=0.001, beta_1=0.9, beta_2=0.999, epsilon=None, decay=0.0, amsgrad=False)
model.add(Embedding(len(word_index)+1, 300, weights=[embedding_matrix], input_length=max_len, trainable=False))
model.add(Conv1D(128, 5, activation='relu'))
model.add(GlobalMaxPooling1D())
model.add(Dense(10, activation='relu'))
model.add(Dropout(0.1))
if (categorical):
model.add(Dense(3, activation='softmax'))
model.compile(loss='categorical_crossentropy', optimizer=optm, metrics=['accuracy'])
else:
model.add(Dense(1, activation='sigmoid'))
model.compile(loss='binary_crossentropy', optimizer=optm, metrics=['accuracy'])
return model
# CNN Model Creation 2
def CNN_model2(word_index, embedding_matrix, max_len, categorical):
optm = Adam(lr=0.001, beta_1=0.9, beta_2=0.999, epsilon=1e-08, decay=0.0)
model = Sequential()
model.add(Embedding(len(word_index)+1, 300, weights=[embedding_matrix], input_length=max_len, trainable=False))
model.add(Conv1D(128, 7, activation='relu', padding='same'))
model.add(MaxPooling1D(2))
model.add(Conv1D(128, 7, activation='relu', padding='same'))
model.add(GlobalMaxPooling1D())
model.add(Dense(64, activation='relu', kernel_regularizer=regularizers.l2(1e-4)))
model.add(Dropout(0.2))
if (categorical):
model.add(Dense(3, activation='softmax'))
model.compile(loss='categorical_crossentropy', optimizer=optm, metrics=['accuracy'])
else:
model.add(Dense(1, activation='sigmoid'))
model.compile(loss='binary_crossentropy', optimizer=optm, metrics=['accuracy'])
return model
#################################################################################################
# CNN Model
def CNN(X_train, y_train, X_test, y_test, word_index, embedding_matrix, max_len, seed, categorical):
earlystop = EarlyStopping(monitor='val_loss', min_delta=0, patience=2, verbose=1, mode='auto', restore_best_weights=True) # pateince is number of epochs
callbacks_list = [earlystop]
if (categorical):
kfold = list(KFold(n_splits=5, shuffle=True, random_state=seed).split(X_train, y_train))
else:
kfold = list(StratifiedKFold(n_splits=5, shuffle=True, random_state=seed).split(X_train, y_train))
model_infos = []
metrics = []
model = None
for i,(train, test) in enumerate(kfold):
model = None
#model = CNN_model(word_index, embedding_matrix, max_len, categorical)
model = CNN_model2(word_index, embedding_matrix, max_len, categorical)
print("Fit fold", i+1," ==========================================================================")
model_info=model.fit(X_train[train], y_train[train], epochs=10, batch_size=8, validation_data=(X_train[test], y_train[test]),
callbacks=callbacks_list, verbose=1)
print("Performance plot of fold {}:".format(i+1))
# summarize history in plot
plot_model_history(model_info)
model_infos.append(model_info)
#Final evaluation of the model
metrics, y_pred = evaluate_model(metrics, categorical, model, y_test, X_test)
print(model.summary())
return y_pred, metrics, model_infos
########################################################################################################
def findAverage(all_metrics):
f1 = []
precision = []
recall = []
accuracy = []
avg_metrics = []
for metrics in all_metrics:
print(metrics)
f1.append(metrics[0][1])
precision.append(metrics[1][1])
recall.append(metrics[2][1])
accuracy.append(metrics[3][1])
avg_metrics.append(['f1score',np.mean(f1)])
avg_metrics.append(['precision',np.mean(precision)])
avg_metrics.append(['recall',np.mean(recall)])
avg_metrics.append(['accuracy',np.mean(accuracy)])
return avg_metrics
seed = 97
# Binary Tests
# y_pred, metrics, model_infos = CNN(X_train_b, y_train_b, X_test_b, y_test_b, word_index_eff, embedding_matrix_w2v_eff, max_len_eff, seed, False)
# avg_metrics = findAverage(metrics)
# print("Average Scores")
# print(avg_metrics)
y_pred, metrics, model_infos = CNN(X_train_c, y_train_c, X_test_c, y_test_c, word_index_eff, embedding_matrix_GNV_eff, max_len_eff, seed, True)
avg_metrics = findAverage(metrics)
print("Average Scores")
print(avg_metrics)