-
Notifications
You must be signed in to change notification settings - Fork 0
/
Prediction_DP.py
executable file
·343 lines (266 loc) · 14.9 KB
/
Prediction_DP.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
343
"""
Created on Aug 6, 2022.
Prediction_DP.py
@author: Soroosh Tayebi Arasteh <soroosh.arasteh@rwth-aachen.de>
https://github.com/tayebiarasteh/
"""
import torch
import os.path
import torch.nn.functional as F
import numpy as np
from sklearn import metrics
from tqdm import tqdm
import matplotlib.pyplot as plt
import pandas as pd
from config.serde import read_config
epsilon = 1e-15
class Prediction:
def __init__(self, cfg_path, label_names):
"""
This class represents prediction (testing) process similar to the Training class.
"""
self.params = read_config(cfg_path)
self.cfg_path = cfg_path
self.label_names = label_names
self.setup_cuda()
def setup_cuda(self, cuda_device_id=0):
"""setup the device.
Parameters
----------
cuda_device_id: int
cuda device id
"""
if torch.cuda.is_available():
torch.backends.cudnn.fastest = True
torch.cuda.set_device(cuda_device_id)
self.device = torch.device('cuda')
else:
self.device = torch.device('cpu')
def setup_model(self, model, model_file_name=None, epoch_num=10):
if model_file_name == None:
model_file_name = self.params['trained_model_name']
self.model = model.to(self.device)
self.model.load_state_dict(torch.load(os.path.join(self.params['target_dir'], self.params['network_output_path']) + "epoch" + str(epoch_num) + "_" + model_file_name))
def setup_model_DP(self, model, privacy_engine, epoch_num=10):
self.device = None
self.setup_cuda()
self.model = model.to(self.device)
self.privacy_engine = privacy_engine
self.privacy_engine.load_checkpoint(module=self.model, path=os.path.join(self.params['target_dir'], self.params['network_output_path']) + "epoch" + str(epoch_num) + "_" + self.params['DP_checkpoint_name'])
def evaluate_2D(self, test_loader):
"""Testing 2D-wise.
Parameters
----------
Returns
-------
"""
self.model.eval()
total_f1_score = []
total_AUROC = []
total_accuracy = []
total_specificity_score = []
total_sensitivity_score = []
total_precision_score = []
# initializing the caches
preds_with_sigmoid_cache = torch.Tensor([]).to(self.device)
labels_cache = torch.Tensor([]).to(self.device)
for idx, (image, label) in enumerate(tqdm(test_loader)):
image = image.to(self.device)
label = label.to(self.device)
label = label.float()
with torch.no_grad():
output = self.model(image)
output_sigmoided = F.sigmoid(output)
# saving the logits and labels of this batch
preds_with_sigmoid_cache = torch.cat((preds_with_sigmoid_cache, output_sigmoided))
labels_cache = torch.cat((labels_cache, label))
############ Evaluation metric calculation ########
# threshold finding for metrics calculation
preds_with_sigmoid_cache = preds_with_sigmoid_cache.cpu().numpy()
labels_cache = labels_cache.int().cpu().numpy()
optimal_threshold = np.zeros(labels_cache.shape[1])
for idx in range(labels_cache.shape[1]):
fpr, tpr, thresholds = metrics.roc_curve(labels_cache[:, idx], preds_with_sigmoid_cache[:, idx], pos_label=1)
optimal_idx = np.argmax(tpr - fpr)
optimal_threshold[idx] = thresholds[optimal_idx]
metrics.RocCurveDisplay(fpr=fpr, tpr=tpr).plot()
plt.annotate('working point', xy=(fpr[optimal_idx], tpr[optimal_idx]), xycoords='data',
arrowprops=dict(facecolor='red'))
plt.grid()
plt.title(self.label_names[idx] + f' | threshold: {optimal_threshold[idx]:.4f}')
plt.savefig(os.path.join(self.params['target_dir'], self.params['stat_log_path'], self.label_names[idx] + '.png'))
predicted_labels = (preds_with_sigmoid_cache > optimal_threshold).astype(np.int32)
# Metrics calculation (macro) over the whole set
confusion = metrics.multilabel_confusion_matrix(labels_cache, predicted_labels)
F1_disease = []
accuracy_disease = []
specificity_disease = []
sensitivity_disease = []
precision_disease = []
for idx, disease in enumerate(confusion):
TN = disease[0, 0]
FP = disease[0, 1]
FN = disease[1, 0]
TP = disease[1, 1]
F1_disease.append(2 * TP / (2 * TP + FN + FP + epsilon))
accuracy_disease.append((TP + TN) / (TP + TN + FP + FN + epsilon))
specificity_disease.append(TN / (TN + FP + epsilon))
sensitivity_disease.append(TP / (TP + FN + epsilon))
precision_disease.append(TP / (TP + FP + epsilon))
# Macro averaging
total_f1_score.append(np.stack(F1_disease))
total_AUROC.append(metrics.roc_auc_score(labels_cache, preds_with_sigmoid_cache, average=None))
total_accuracy.append(np.stack(accuracy_disease))
total_specificity_score.append(np.stack(specificity_disease))
total_sensitivity_score.append(np.stack(sensitivity_disease))
total_precision_score.append(np.stack(precision_disease))
average_f1_score = np.stack(total_f1_score).mean(0)
average_AUROC = np.stack(total_AUROC).mean(0)
average_accuracy = np.stack(total_accuracy).mean(0)
average_specificity = np.stack(total_specificity_score).mean(0)
average_sensitivity = np.stack(total_sensitivity_score).mean(0)
average_precision = np.stack(total_precision_score).mean(0)
return average_f1_score, average_AUROC, average_accuracy, average_specificity, average_sensitivity, average_precision
def predict_only(self, test_loader):
"""Evaluation with metrics epoch
"""
self.model.eval()
# initializing the caches
preds_with_sigmoid_cache = torch.Tensor([]).to(self.device)
labels_cache = torch.Tensor([]).to(self.device)
gender_cache = torch.Tensor([]).to(self.device)
age_cache = torch.Tensor([]).to(self.device)
for idx, (image, label, gender, age) in enumerate(tqdm(test_loader)):
gender = gender.to(self.device)
age = age.to(self.device)
image = image.to(self.device)
label = label.to(self.device)
label = label.float()
with torch.no_grad():
output = self.model(image)
output_sigmoided = F.sigmoid(output)
# saving the logits and labels of this batch
preds_with_sigmoid_cache = torch.cat((preds_with_sigmoid_cache, output_sigmoided))
labels_cache = torch.cat((labels_cache, label))
gender_cache = torch.cat((gender_cache, gender))
age_cache = torch.cat((age_cache, age))
return preds_with_sigmoid_cache, labels_cache, gender_cache, age_cache
def bootstrapper(self, preds_with_sigmoid, targets, index_list, testsetname):
self.model.eval()
AUC_list = []
accuracy_list = []
specificity_list = []
sensitivity_list = []
F1_list = []
print('bootstrapping ... \n')
for counter in range(1000):
final_targets = np.zeros_like(targets)
final_preds_with_sigmoid = np.zeros_like(preds_with_sigmoid)
for idx in range(preds_with_sigmoid.shape[-1]):
new_targets = np.zeros_like(targets[:, idx])
new_preds_with_sigmoid = np.zeros_like(preds_with_sigmoid[:, idx])
for i, index in enumerate(index_list[counter]):
new_targets[i] = targets[:, idx][index]
new_preds_with_sigmoid[i] = preds_with_sigmoid[:, idx][index]
final_targets[:, idx] = new_targets
final_preds_with_sigmoid[:, idx] = new_preds_with_sigmoid
############ Evaluation metric calculation ########
# threshold finding for metrics calculation
optimal_threshold = np.zeros(final_targets.shape[1])
for idx in range(final_targets.shape[1]):
fpr, tpr, thresholds = metrics.roc_curve(final_targets[:, idx], final_preds_with_sigmoid[:, idx],
pos_label=1)
optimal_idx = np.argmax(tpr - fpr)
optimal_threshold[idx] = thresholds[optimal_idx]
predicted_labels = (final_preds_with_sigmoid > optimal_threshold).astype(np.int32)
# Metrics calculation (macro) over the whole set
confusion = metrics.multilabel_confusion_matrix(final_targets, predicted_labels)
F1_disease = []
accuracy_disease = []
specificity_disease = []
sensitivity_disease = []
for idx, disease in enumerate(confusion):
TN = disease[0, 0]
FP = disease[0, 1]
FN = disease[1, 0]
TP = disease[1, 1]
F1_disease.append(2 * TP / (2 * TP + FN + FP + epsilon))
accuracy_disease.append((TP + TN) / (TP + TN + FP + FN + epsilon))
specificity_disease.append(TN / (TN + FP + epsilon))
sensitivity_disease.append(TP / (TP + FN + epsilon))
average_f1_score = np.stack(F1_disease)
average_AUROC = np.stack(metrics.roc_auc_score(final_targets, final_preds_with_sigmoid, average=None))
average_accuracy = np.stack(accuracy_disease)
average_specificity = np.stack(specificity_disease)
average_sensitivity = np.stack(sensitivity_disease)
AUC_list.append(average_AUROC)
accuracy_list.append(average_accuracy)
specificity_list.append(average_specificity)
sensitivity_list.append(average_sensitivity)
F1_list.append(average_f1_score)
AUC_list = np.stack(AUC_list)
accuracy_list = np.stack(accuracy_list)
specificity_list = np.stack(specificity_list)
sensitivity_list = np.stack(sensitivity_list)
F1_list = np.stack(F1_list)
print('------------------------------------------------------'
'----------------------------------')
print('\t experiment:' + self.params['experiment_name'] + '\n')
print(f'\t avg AUROC: {AUC_list.mean():.4f} ± {AUC_list.std():.2f} | avg accuracy: {accuracy_list.mean():.4f} ± {accuracy_list.std():.2f}'
f' | avg specificity: {specificity_list.mean():.4f} ± {specificity_list.std():.4f}'
f' | avg recall (sensitivity): {sensitivity_list.mean():.4f} ± {sensitivity_list.std():.2f} | avg F1: {F1_list.mean():.4f} ± {F1_list.std():.2f}\n')
print('Individual AUROC:')
for idx, pathology in enumerate(self.label_names):
print(f'\t{pathology}: {AUC_list[:, idx].mean():.4f} ± {AUC_list[:, idx].std():.2f}')
print('\nIndividual accuracy:')
for idx, pathology in enumerate(self.label_names):
print(f'\t{pathology}: {accuracy_list[:, idx].mean():.4f} ± {accuracy_list[:, idx].std():.2f}')
print('\nIndividual sensitivity:')
for idx, pathology in enumerate(self.label_names):
print(f'\t{pathology}: {sensitivity_list[:, idx].mean():.4f} ± {sensitivity_list[:, idx].std():.2f}')
print('\nIndividual specificity:')
for idx, pathology in enumerate(self.label_names):
print(f'\t{pathology}: {specificity_list[:, idx].mean():.4f} ± {specificity_list[:, idx].std():.2f}')
print('------------------------------------------------------'
'----------------------------------')
# saving the stats
msg = f'\n\n----------------------------------------------------------------------------------------\n' \
'\t experiment:' + self.params['experiment_name'] + '\n\n' \
f'avg AUROC: {AUC_list.mean():.4f} ± {AUC_list.std():.2f} | avg accuracy: {accuracy_list.mean():.4f} ± {accuracy_list.std():.2f} ' \
f' | avg specificity: {specificity_list.mean():.4f} ± {specificity_list.std():.2f}' \
f' | avg recall (sensitivity): {sensitivity_list.mean():.4f} ± {sensitivity_list.std():.2f} | avg F1: {F1_list.mean():.4f} ± {F1_list.std():.2f}\n\n'
with open(os.path.join(self.params['target_dir'], self.params['stat_log_path']) + '/Test_on_' + str(testsetname), 'a') as f:
f.write(msg)
msg = f'Individual AUROC:\n'
with open(os.path.join(self.params['target_dir'], self.params['stat_log_path']) + '/Test_on_' + str(testsetname), 'a') as f:
f.write(msg)
for idx, pathology in enumerate(self.label_names):
msg = f'{pathology}: {AUC_list[:, idx].mean():.4f} ± {AUC_list[:, idx].std():.2f} | '
with open(os.path.join(self.params['target_dir'], self.params['stat_log_path']) + '/Test_on_' + str(testsetname), 'a') as f:
f.write(msg)
msg = f'\n\nIndividual accuracy:\n'
with open(os.path.join(self.params['target_dir'], self.params['stat_log_path']) + '/Test_on_' + str(testsetname), 'a') as f:
f.write(msg)
for idx, pathology in enumerate(self.label_names):
msg = f'{pathology}: {accuracy_list[:, idx].mean():.4f} ± {accuracy_list[:, idx].std():.2f} | '
with open(os.path.join(self.params['target_dir'], self.params['stat_log_path']) + '/Test_on_' + str(testsetname), 'a') as f:
f.write(msg)
msg = f'\n\nIndividual sensitivity:\n'
with open(os.path.join(self.params['target_dir'], self.params['stat_log_path']) + '/Test_on_' + str(testsetname), 'a') as f:
f.write(msg)
for idx, pathology in enumerate(self.label_names):
msg = f'{pathology}: {sensitivity_list[:, idx].mean():.4f} ± {sensitivity_list[:, idx].std():.2f} | '
with open(os.path.join(self.params['target_dir'], self.params['stat_log_path']) + '/Test_on_' + str(testsetname), 'a') as f:
f.write(msg)
msg = f'\n\nIndividual specificity:\n'
with open(os.path.join(self.params['target_dir'], self.params['stat_log_path']) + '/Test_on_' + str(testsetname), 'a') as f:
f.write(msg)
for idx, pathology in enumerate(self.label_names):
msg = f'{pathology}: {specificity_list[:, idx].mean():.4f} ± {specificity_list[:, idx].std():.2f} | '
with open(os.path.join(self.params['target_dir'], self.params['stat_log_path']) + '/Test_on_' + str(testsetname), 'a') as f:
f.write(msg)
df = pd.DataFrame(AUC_list.mean(1), columns=['AUC_mean'])
for idx in range(AUC_list.shape[-1]):
df.insert(idx + 1, 'AUC_' + str(idx + 1), AUC_list[:, idx])
df.to_csv(os.path.join(self.params['target_dir'], self.params['stat_log_path']) + '/bootstrapped_AUC_Test_on' + str(testsetname) + '.csv', sep=',', index=False)
return AUC_list