-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtrain_network_covidECG_CV.py
More file actions
284 lines (229 loc) · 9.79 KB
/
Copy pathtrain_network_covidECG_CV.py
File metadata and controls
284 lines (229 loc) · 9.79 KB
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
# set the matplotlib backend so figures can be saved in the background
import imutils
import matplotlib
# matplotlib.use("Agg")
from keras.callbacks import CSVLogger
from keras.optimizers import Adam
from matplotlib import pyplot
from sklearn.model_selection import train_test_split
from keras.preprocessing.image import img_to_array, ImageDataGenerator
from keras.utils import to_categorical
from imutils import paths
import numpy as np
import random
import cv2
import os
import matplotlib.pyplot as plt
from sklearn.model_selection import StratifiedKFold
# os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3' # or any {'0', '1', '2'}
# from myScripts.yardimci_fonks import cizim_islemleri ################# I closed this .lib because i did not added my result drawing functions.
from mimarilerim.alexnet_modified import networkArchFonc
title = 'Covid ECG features maps CN_kFold'
hangi_calisma = "covid_ECG_training" # KLASOR ISMI VERILECEK
ag_modeli = "Modified-Alexnet" + " + Adam Optimizier"
dataset = 'preprocessed_dataset' ################YOU CAN EASLY CHANGE DATASET FILE WHAT YOU WANT TO TRAIN
#etiket = ["Negative", "Positive"]
etiket = ["NO-FINDINGS", "COVID-19"]
sira = 34
# initialize the number of epochs to train for, initia learning rate,
EPOCHS = 50 ######## ALSO YOU CAN CHANGE THE HYPERPARAMETERS
INIT_LR = 1e-3
BS = 128 # datad adedinden küçük olmalı
boyut = 256 # dataset image size
sinif = 2 #
derinlik = 3
fboyut = 20
cm_renkler = "Blues"
fold_sayisi = 5
ana_dizin = "../" #YOU CAN CHANGE
# trainingCSV_kfold_test = ana_dizin + hangi_calisma + "/sonuclar/" + "kfold_testCSV.log"
trainingCSV_kfold_train_and_validate = ana_dizin + hangi_calisma + "/sonuclar/" + "kfold_train_and_validateCSV.log"
sira = str(sira) + "-" + title
dataset = ana_dizin + hangi_calisma + "/" + dataset
fig_boyut = (fboyut, fboyut)
resim_boyut = (boyut, boyut)
sonuc_kayit = ana_dizin + hangi_calisma + "/sonuclar/"
model_save = ana_dizin + hangi_calisma + '/modeller/' + sira + "kFold" + "-M"
acc_kayit = ana_dizin + hangi_calisma + "/sonuclar/" + sira + "kFold" + "-ACC"
loss_kayit = ana_dizin + hangi_calisma + "/sonuclar/" + sira + "kFold" + "-LOSS"
val_acc_kayit = ana_dizin + hangi_calisma + "/sonuclar/" + sira + "kFold" + "-VALACC"
val_loss_kayit = ana_dizin + hangi_calisma + "/sonuclar/" + sira + "kFold" + "-VALLOSS"
cm_kayit = ana_dizin + hangi_calisma + "/sonuclar/" + sira + "kFold" + "-CM"
val_cm_kayit = ana_dizin + hangi_calisma + "/sonuclar/" + sira + "kFold" + "-CMVAL"
val_PR_kayit = ana_dizin + hangi_calisma + "/sonuclar/" + sira + "kFold" + "-PRVAL"
PR_kayit = ana_dizin + hangi_calisma + "/sonuclar/" + sira + "kFold" + "-PR"
ROC_kayit = ana_dizin + hangi_calisma + "/sonuclar/" + sira + "kFold" + "-ROC"
val_ROC_kayit = ana_dizin + hangi_calisma + "/sonuclar/" + sira + "kFold" + "-ROCVAL"
def load_data():
# initialize the data and labels
print("[INFO] loading images...")
data = []
labels = []
# grab the image paths and randomly shuffle them
imagePaths = sorted(list(paths.list_images(dataset)))
# random.seed(42)
# random.shuffle(imagePaths)
# loop over the input images
for imagePath in imagePaths:
# load the image, pre-process it, and store it in the data list
image = cv2.imread(imagePath, cv2.IMREAD_UNCHANGED) # gray okuduk değişebilir
image = cv2.cvtColor(image, cv2.COLOR_BGRA2BGR)
# cv2.imwrite("1.png", image)
# plt.imshow(image)
# plt.show()
# print(image.shape)
image = cv2.resize(image, resim_boyut, interpolation=cv2.INTER_AREA)
# print(image.shape)
# image3=imutils.resize(image,height =boyut, width=boyut)
# cv2.imwrite("3.png", image2)
# plt.imshow(image2)
# plt.show()
image = img_to_array(image)
data.append(image)
# extract the class label from the image path and update the
# labels list
label = imagePath.split(os.path.sep)[-2]
if label == "N":
label = 0
elif label == "C":
label = 1
# eklenecek
labels.append(label)
# scale the raw pixel intensities to the range [0, 1]
data = np.array(data, dtype="float") / 255.0
labels = np.array(labels)
return data, labels
def create_model():
# initialize the model
print("[INFO] compiling model...")
model = networkArchFonc.build(width=boyut, height=boyut, depth=derinlik, classes=sinif)
opt = Adam(lr=INIT_LR, decay=INIT_LR / EPOCHS)
model.compile(loss="binary_crossentropy", optimizer=opt,
metrics=["accuracy"])
return model
def train_and_validate_model(model, data, labels):
# partition the data into training and testing splits using 75% of
(trainX, testX, trainY, testY) = train_test_split(data,
labels, test_size=0.25, random_state=42)
# convert the labels from integers to vectors
trainY = to_categorical(trainY, num_classes=sinif)
testY = to_categorical(testY, num_classes=sinif)
csv_logger = CSVLogger(trainingCSV_kfold_train_and_validate, append=True)
# train the network
print("[INFO] training network...")
H = model.fit(trainX, trainY, batch_size=BS,
validation_data=(testX, testY), # steps_per_epoch=len(trainX) / BS,
epochs=EPOCHS, verbose=0, callbacks=[csv_logger])
return H,testX,testY
def tic():
#Homemade version of matlab tic and toc functions
import time
global startTime_for_tictoc
startTime_for_tictoc = time.time()
def toc():
import time
if 'startTime_for_tictoc' in globals():
print( "Elapsed time is " + str(time.time() - startTime_for_tictoc) + " seconds.")
return str(time.time() - startTime_for_tictoc)
else:
print ("Toc: start time not set")
print("[INFO] Cross-Validation basliyor...")
# fix random seed for reproducibility
seed = 14
np.random.seed(seed)
data, labels = load_data()
# define 5-fold cross validation test harness
kfold = StratifiedKFold(n_splits=fold_sayisi, shuffle=True, random_state=seed)
testing_acc_values = []
fold = 1
#for roc curve for testing
tprs = []
aucs = []
fprs_kf = []
tprs_kf = []
mean_fpr = np.linspace(0, 1, 100)
#validation_roc_curves
val_tprs = []
val_aucs = []
val_fprs_kf = []
val_tprs_kf = []
#for training acc
training_ACCs=[]
training_loses=[]
val_ACCs=[]
val_loses=[]
for train, test in kfold.split(data, labels):
# create model # Compile model
print("Running Fold {0} / {1}".format(fold, fold_sayisi))
# model = None
model = create_model()
# Fit the model
tic()
H,validationX,validationY=train_and_validate_model(model, data[train], labels[train])
egitim_suresi=toc()
training_ACCs.append(H.history["accuracy"])
training_loses.append(H.history["loss"])
val_ACCs.append(H.history["val_accuracy"])
val_loses.append(H.history["val_loss"])
# evaluate the model
labels_test_cat = to_categorical(labels[test], num_classes=sinif)
# csv_logger_testing = CSVLogger(trainingCSV_kfold_test, append=True)
scores = model.evaluate(data[test], labels_test_cat, verbose=0) #, callbacks=[csv_logger_testing]
print("For Fold {0} / {1} {2}: {3:.2f}".format(fold, fold_sayisi, model.metrics_names[1], scores[1] * 100))
testing_acc_values.append(scores[1] * 100)
# predict the model
print("[INFO] Cizim islemleri basliyor... for testing")
########### YOU CAN EASLY DRAW YOUR OR SAVE YOUR RESULTS HERE ###########
# cizim = cizim_islemleri(fig_boyut, model, data[test], labels_test_cat, title, sonuc_kayit, sira, dataset, EPOCHS,
# INIT_LR, BS,
# boyut, sinif, derinlik, ag_modeli,
# kFold=fold) # nesne olusturma, icerde sonuc dosyasi geliyor
# cizim.basarim_hesapla(etiket,egitim_suresi,scores[0],H.history)
# cizim.ROC_curve(etiket, ROC_kayit)
# cizim.model_ozet_kaydi()
#CV_Roc
# fpr,tpr,auc_h=cizim.CV_ROC_AUC_hesapla()
# interp_tpr = np.interp(mean_fpr, fpr, tpr)
# interp_tpr[0] = 0.0
# tprs.append(interp_tpr)
# aucs.append(auc_h)
# fprs_kf.append(fpr)
# tprs_kf.append(tpr)
# if fold == fold_sayisi: #sadece son fold'da yapilacaklar
# cizim.plot_CV_ROC(tprs,aucs,mean_fpr,fprs_kf,tprs_kf,ROC_kayit)
# cizim.acc_loss_CV_graph(training_ACCs,training_loses,EPOCHS,acc_kayit,loss_kayit)
# cizim.val_acc_loss_CV_graph(val_ACCs,val_loses,EPOCHS,val_acc_kayit,val_loss_kayit)
# cizim.plot_boxplot(testing_acc_values, fold_sayisi)
# cizim.cm_graph(etiket, cm_renkler, cm_kayit)
# if fold == 2: # rastgele bir fold
#
# cizim.PR_grapgh(PR_kayit)
#
# del cizim
# VALIDATE the model
print("[INFO] Cizim islemleri basliyor for validation...")
# cizim2 = cizim_islemleri(fig_boyut, model, validationX, validationY, title, sonuc_kayit, sira, dataset, EPOCHS,
# INIT_LR, BS,
# boyut, sinif, derinlik, ag_modeli,
# kFold=fold,isForVal=1) # nesne olusturma, icerde sonuc dosyasi geliyor
#
# CV_Roc
# fpr, tpr, auc_h = cizim2.CV_ROC_AUC_hesapla()
# interp_tpr = np.interp(mean_fpr, fpr, tpr)
# interp_tpr[0] = 0.0
# val_tprs.append(interp_tpr)
# val_aucs.append(auc_h)
# val_fprs_kf.append(fpr)
# val_tprs_kf.append(tpr)
#
# if fold == fold_sayisi: # sadece son fold'da yapilacaklar
# cizim2.plot_CV_ROC(val_tprs, val_aucs, mean_fpr, val_fprs_kf, val_tprs_kf, val_ROC_kayit)
#
# if fold == 2: # rastgele bir fold
# cizim2.cm_graph(etiket, cm_renkler, val_cm_kayit)
# cizim2.PR_grapgh(val_PR_kayit)
# del cizim2
#
fold = fold + 1
print("AVG CV Results: %.2f%% (+/- %.2f%%)" % (np.mean(testing_acc_values), np.std(testing_acc_values)))
print("[INFO] Cross-Validation tamamlandi!...")