-
Notifications
You must be signed in to change notification settings - Fork 4
/
modal_ct.py
538 lines (392 loc) · 19.4 KB
/
modal_ct.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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
# author: github/zabir-nabil
# relevant imports
import os
import cv2
import pydicom
import pandas as pd
import numpy as np
# import tensorflow as tf
# import matplotlib.pyplot as plt
# torch dataset
import torch
from torch.utils.data import Dataset, DataLoader
from torchvision import transforms, utils
import random
from tqdm import tqdm
# k-fold
from sklearn.model_selection import KFold
# hyperparam object
from config import HyperP
hyp = HyperP(model_type = "singlemodal_ct") # slope prediction
# seed
seed = hyp.seed
random.seed(seed)
os.environ['PYTHONHASHSEED'] = str(seed)
np.random.seed(seed)
# tf.random.set_seed(seed)
torch.manual_seed(seed)
torch.backends.cudnn.deterministic = True
torch.backends.cudnn.benchmark = False
# path
root_path = hyp.data_folder # ../input/osic-pulmonary-fibrosis-progression
train = pd.read_csv(f'{root_path}/train.csv')
train_vol = pd.read_csv(f'{hyp.ct_tab_feature_csv}')
train['Volume'] = 2000.
for i in range(len(train)):
pid = train.iloc[i]['Patient']
try:
train.at[i, 'Volume'] = train_vol[train_vol['Patient']==pid].iloc[0]['Volume']
except:
print('bug at volume')
# tabular feature generation
def get_tab(df):
# passing a zero vector, no features encoded
return np.zeros(5, dtype=np.float)
vector = [(df.Age.values[0] - train.Age.values.mean()) / train.Age.values.std()] # df.Age.values[0].mean(), df.Age.values[0].std()
if df.Sex.values[0] == 'Male':
vector.append(0)
else:
vector.append(1)
if df.SmokingStatus.values[0] == 'Never smoked':
vector.extend([0,0])
elif df.SmokingStatus.values[0] == 'Ex-smoker':
vector.extend([1,1])
elif df.SmokingStatus.values[0] == 'Currently smokes':
vector.extend([0,1])
else:
vector.extend([1,0]) # this is useless
vector.append((df.Volume.values[0] - train.Volume.values.mean()) / train.Volume.values.std())
return np.array(vector)
A = {} # the slopes
TAB = {} # tabular features
P = [] # patient IDs
for i, p in tqdm(enumerate(train.Patient.unique())):
sub = train.loc[train.Patient == p, :]
fvc = sub.FVC.values
weeks = sub.Weeks.values
c = np.vstack([weeks, np.ones(len(weeks))]).T
a, _ = np.linalg.lstsq(c, fvc)[0] # we calculate the best slope with least square
# ref: https://numpy.org/doc/stable/reference/generated/numpy.linalg.lstsq.html
A[p] = a
TAB[p] = get_tab(sub)
P.append(p)
class OSICData(Dataset):
BAD_ID = ['ID00011637202177653955184', 'ID00052637202186188008618']
def __init__(self, keys, a, tab):
self.keys = [k for k in keys if k not in self.BAD_ID]
self.a = a
self.tab = tab
self.train_data = {}
for p in train.Patient.values:
p_n = len(os.listdir(f'{root_path}/train/{p}/'))
self.train_data[p] = os.listdir(f'{root_path}/train/{p}/')[int( hyp.strip_ct * p_n):-int( hyp.strip_ct * p_n)] # removing first and last 15% slices
def __len__(self):
return len(self.keys)
def get_img(self, path):
d = pydicom.dcmread(path)
return cv2.resize(d.pixel_array / 2**11, (512, 512)) # maybe bug in resize
def __getitem__(self, idx):
x = []
a, tab = [], []
k = self.keys[idx] # instead of random id send a specific id
# np.random.choice(self.keys, 1)[0]
try:
i = np.random.choice(self.train_data[k], size=1)[0]
# print(i)
cp = f'{root_path}/train/{k}/{i}'
#print(cp)
img = self.get_img(cp)
x.append(img)
a.append(self.a[k])
tab.append(self.tab[k])
except:
print('failed')
print(k, i)
x, a, tab = torch.tensor(x, dtype=torch.float32), torch.tensor(a, dtype=torch.float32), torch.tensor(tab, dtype=torch.float32)
tab = torch.squeeze(tab, axis=0)
return [x, tab] , a, k # k for patient id
from torchvision import models
from torch import nn
from efficientnet_pytorch import EfficientNet
from efficientnet_pytorch.utils import Conv2dStaticSamePadding
class Identity(nn.Module):
# credit: ptrblck
def __init__(self):
super(Identity, self).__init__()
def forward(self, x):
return x
class Self_Attn(nn.Module):
""" Self attention Layer"""
def __init__(self,in_dim):
super(Self_Attn,self).__init__()
self.chanel_in = in_dim
self.query_conv = nn.Conv2d(in_channels = in_dim , out_channels = in_dim//8 , kernel_size= 1)
self.key_conv = nn.Conv2d(in_channels = in_dim , out_channels = in_dim//8 , kernel_size= 1)
self.value_conv = nn.Conv2d(in_channels = in_dim , out_channels = in_dim , kernel_size= 1)
self.gamma = nn.Parameter(torch.rand(1)) # random initialization
self.softmax = nn.Softmax(dim=-1) #
def forward(self,x):
"""
inputs :
x : input feature maps( B X C X W X H)
returns :
out : self attention value + input feature
attention: B X N X N (N is Width*Height)
"""
m_batchsize,C,width ,height = x.size()
proj_query = self.query_conv(x).view(m_batchsize,-1,width*height).permute(0,2,1) # B X CX(N)
proj_key = self.key_conv(x).view(m_batchsize,-1,width*height) # B X C x (*W*H)
energy = torch.bmm(proj_query,proj_key) # transpose check
attention = self.softmax(energy) # BX (N) X (N)
proj_value = self.value_conv(x).view(m_batchsize,-1,width*height) # B X C X N
out = torch.bmm(proj_value,attention.permute(0,2,1) )
out = out.view(m_batchsize,C,width,height)
out = self.gamma*out + x
return out # , attention
# only based on best config of b2
class TabCT(nn.Module):
def __init__(self, cnn, attn_filters, fc_dim, n_attn_layers):
super(TabCT, self).__init__()
# CT features
cnn_dict = {'resnet18': models.resnet18, 'resnet34': models.resnet34, 'resnet50': models.resnet50,
'resnet101': models.resnet101, 'resnet152': models.resnet152, 'resnext50': models.resnext50_32x4d,
'resnext101': models.resnext101_32x8d}
# feature dim
self.out_dict = {'resnet18': 512, 'resnet34': 512, 'resnet50': 2048, 'resnet101': 2048, 'resnet152': 2048,
'resnext50': 2048, 'resnext101': 2048, "efnb0": 1280, "efnb1": 1280, "efnb2": 1408,
"efnb3": 1536, "efnb4": 1792, "efnb5": 2048, "efnb6": 2304, "efnb7": 2560}
self.n_tab = hyp.n_tab # n tabular features
self.attn_filters = attn_filters
self.fc_dim = fc_dim
self.n_attn_layers = n_attn_layers
# efficient net b2 base
if cnn in cnn_dict.keys():
self.ct_cnn = cnn_dict[cnn](pretrained = True)
# make single channel
self.ct_cnn.conv1 = nn.Conv2d(1, 64, kernel_size=(7, 7), stride=(2, 2), padding=(3, 3), bias=False)
self.ct_cnn.avgpool = nn.Conv2d(self.out_dict[cnn], self.attn_filters, kernel_size=(1, 1), bias=False)
self.ct_cnn.fc = nn.Identity()
# 1 self attn layer [stacked]
self.attn = nn.ModuleList()
for _ in range(self.n_attn_layers):
self.attn.append(Self_Attn(self.attn_filters))
elif 'efn' in cnn:
if 'b0' in cnn:
self.ct_cnn = EfficientNet.from_pretrained('efficientnet-b0')
self.ct_cnn._conv_stem = Conv2dStaticSamePadding(1, 32, kernel_size = (3,3), stride = (2,2),
bias = False, image_size = 512)
elif 'b1' in cnn:
self.ct_cnn = EfficientNet.from_pretrained('efficientnet-b1')
self.ct_cnn._conv_stem = Conv2dStaticSamePadding(1, 32, kernel_size = (3,3), stride = (2,2),
bias = False, image_size = 512)
elif 'b2' in cnn:
self.ct_cnn = EfficientNet.from_pretrained('efficientnet-b2')
self.ct_cnn._conv_stem = Conv2dStaticSamePadding(1, 32, kernel_size = (3,3), stride = (2,2),
bias = False, image_size = 512)
elif 'b3' in cnn:
self.ct_cnn = EfficientNet.from_pretrained('efficientnet-b3')
self.ct_cnn._conv_stem = Conv2dStaticSamePadding(1, 40, kernel_size = (3,3), stride = (2,2),
bias = False, image_size = 512)
elif 'b4' in cnn:
self.ct_cnn = EfficientNet.from_pretrained('efficientnet-b4')
self.ct_cnn._conv_stem = Conv2dStaticSamePadding(1, 48, kernel_size = (3,3), stride = (2,2),
bias = False, image_size = 512)
# replace avg_pool layer
# 1408 is the number of filters in last conv
self.ct_cnn._avg_pooling = Conv2dStaticSamePadding(self.out_dict[ cnn.split('_')[0] ], self.attn_filters, kernel_size = (1,1), stride = (1,1),
bias = False, image_size = 512)
self.ct_cnn._dropout = nn.Identity()
self.ct_cnn._fc = nn.Identity()
self.ct_cnn._swish = nn.Identity()
# 1 self attn layer [stacked]
self.attn = nn.ModuleList()
for _ in range(self.n_attn_layers):
self.attn.append(Self_Attn(self.attn_filters))
else:
raise ValueError("cnn not recognized")
self.avgpool = nn.AdaptiveAvgPool2d((1,1))
self.dropout = nn.Dropout(p=0.25)
self.fc_inter = nn.Linear(self.attn_filters + self.n_tab, self.fc_dim)
self.fc = nn.Linear(self.fc_dim, 1)
def forward(self, x_ct, x_tab):
print(x_ct.shape)
ct_f = self.ct_cnn(x_ct).view(-1, self.attn_filters, 16, 16) # ct features
#print(ct_f.shape)
for ii in range(len(self.attn)):
ct_f = self.attn[ii](ct_f)
#print(ct_f.shape)
ct_f = self.avgpool(ct_f).view(-1, self.attn_filters)
#print(ct_f.shape)
# print(x_tab.shape)
# concatenate
x = torch.cat((ct_f, x_tab), -1) # concat on last axis
# dropout
if self.training:
x = self.dropout(x)
x = self.fc_inter(x)
x = self.fc(x)
return x
from sklearn.model_selection import train_test_split
from sklearn.metrics import mean_squared_error
# score calculation
def score(fvc_true, fvc_pred, sigma):
sigma_clip = np.maximum(sigma, 70)
delta = np.abs(fvc_true - fvc_pred)
delta = np.minimum(delta, 1000)
sq2 = np.sqrt(2)
metric = (delta / sigma_clip)*sq2 + np.log(sigma_clip* sq2)
return np.mean(metric)
def score_avg(p, a): # patient id, predicted a
percent_true = train.Percent.values[train.Patient == p]
fvc_true = train.FVC.values[train.Patient == p]
weeks_true = train.Weeks.values[train.Patient == p]
fvc = a * (weeks_true - weeks_true[0]) + fvc_true[0]
percent = percent_true[0] - a * abs(weeks_true - weeks_true[0])
return score(fvc_true, fvc, percent)
def rmse_avg(p, a): # patient id, predicted a
percent_true = train.Percent.values[train.Patient == p]
fvc_true = train.FVC.values[train.Patient == p]
weeks_true = train.Weeks.values[train.Patient == p]
fvc = a * (weeks_true - weeks_true[0]) + fvc_true[0]
return mean_squared_error(fvc_true, fvc, squared = False)
# hyperparams
result_dir = hyp.results_dir
# training only resnet models on gpu 0
train_models = hyp.train_models
# 'resnext101' -> seems too heavy for 1080
# 'efnb0', 'efnb1', 'efnb2', 'efnb3', 'efnb4', 'efnb5', 'efnb6', 'efnb7'
# device
gpu = torch.device(f"cuda:{hyp.gpu_index}" if torch.cuda.is_available() else "cpu")
nfold = hyp.nfold # hyper
# removing noisy data
P = [p for p in P if p not in ['ID00011637202177653955184', 'ID00052637202186188008618']]
for model in train_models:
for fd in hyp.fc_dim:
for af in hyp.attn_filters:
for nal in hyp.n_attn_layers:
log = open(f"{result_dir}/{model}_fd_{fd}_af_{af}_nal_{nal}.txt", "a+")
kfold =KFold(n_splits=nfold)
ifold = 0
for train_index, test_index in kfold.split(P):
# print(train_index, test_index)
p_train = np.array(P)[train_index]
p_test = np.array(P)[test_index]
osic_train = OSICData(p_train, A, TAB)
train_loader = DataLoader(osic_train, batch_size=hyp.batch_size, shuffle=True, num_workers=hyp.num_workers)
osic_val = OSICData(p_test, A, TAB)
val_loader = DataLoader(osic_val, batch_size=hyp.batch_size, shuffle=True, num_workers=hyp.num_workers)
tabct = TabCT(cnn = model, fc_dim = fd, attn_filters = af, n_attn_layers = nal).to(gpu)
print(f"creating {model} with {fd} feature_dim, {af} attn_filters, and {nal} n_attn_layers")
print(f"fold: {ifold}")
log.write(f"fold: {ifold}\n")
ifold += 1
n_epochs = hyp.n_epochs # max 30 epochs, patience 5, find the suitable epoch number for later final training
best_epoch = n_epochs # 30
optimizer = torch.optim.AdamW(tabct.parameters())
criterion = torch.nn.L1Loss()
max_score = 99999999.0000 # here, max score ]= minimum score
for epoch in range(n_epochs): # loop over the dataset multiple times
running_loss = 0.0
tabct.train()
for i, data in tqdm(enumerate(train_loader, 0)):
[x, t], a, _ = data
print(x.shape)
print(t.shape)
x = x.to(gpu)
t = t.to(gpu)
a = a.to(gpu)
# zero the parameter gradients
optimizer.zero_grad()
# forward + backward + optimize
outputs = tabct(x, t)
loss = criterion(outputs, a)
loss.backward()
optimizer.step()
# print statistics
running_loss += loss.item()
print(f"epoch {epoch+1} train: {running_loss}")
log.write(f"epoch {epoch+1} train: {running_loss}\n")
running_loss = 0.0
pred_a = {}
tabct.eval()
for i, data in tqdm(enumerate(val_loader, 0)):
[x, t], a, pid = data
x = x.to(gpu)
t = t.to(gpu)
a = a.to(gpu)
# forward
outputs = tabct(x, t)
loss = criterion(outputs, a)
pids = pid
preds_a = outputs.detach().cpu().numpy().flatten()
for j, p_d in enumerate(pids):
pred_a[p_d] = preds_a[j]
# print statistics
running_loss += loss.item()
print(f"epoch {epoch+1} val: {running_loss}")
log.write(f"epoch {epoch+1} val: {running_loss}\n")
# score calculation
print(pred_a)
print(len(pred_a))
print(p_test)
print(len(p_test))
score_v = 0.
rmse = 0.
for p in p_test:
score_v += (score_avg(p, pred_a[p]))/len(p_test)
rmse += (rmse_avg(p, pred_a[p]))/len(p_test)
print(f"val score: {score_v}")
log.write(f"val score: {score_v}\n")
log.write(f"val rmse: {rmse}\n")
if score_v <= max_score:
torch.save({
'epoch': epoch,
'model_state_dict': tabct.state_dict(),
'optimizer_state_dict': optimizer.state_dict(),
'score': score_v
}, f"{result_dir}/{model}_fd_{fd}_af_{af}_nal_{nal}.tar")
max_score = score_v
best_epoch = epoch + 1
# destroy model
del tabct
torch.cuda.empty_cache()
# final training with optimized setting
osic_all = OSICData(P, A, TAB)
all_loader = DataLoader(osic_all, batch_size=8, shuffle=True, num_workers=hyp.num_workers)
# load the best model
tabct = TabCT(cnn = model, fc_dim = fd, attn_filters = af, n_attn_layers = nal).to(gpu)
tabct.load_state_dict(torch.load(f"{result_dir}/{model}_fd_{fd}_af_{af}_nal_{nal}.tar")["model_state_dict"])
optimizer = torch.optim.AdamW(tabct.parameters(), lr = hyp.final_lr) # very small learning rate
criterion = torch.nn.L1Loss()
print(f"Final training")
log.write(f"Final training\n")
for epoch in range(best_epoch + 2): # loop over the dataset multiple times
running_loss = 0.0
tabct.train()
for i, data in tqdm(enumerate(all_loader, 0)):
[x, t], a, _ = data
x = x.to(gpu)
t = t.to(gpu)
a = a.to(gpu)
# zero the parameter gradients
optimizer.zero_grad()
# forward + backward + optimize
outputs = tabct(x, t)
loss = criterion(outputs, a)
loss.backward()
optimizer.step()
# print statistics
running_loss += loss.item()
print(f"epoch {epoch+1} train: {running_loss}")
log.write(f"epoch {epoch+1} train: {running_loss}\n")
torch.save({
'epoch': best_epoch,
'model_state_dict': tabct.state_dict(),
'optimizer_state_dict': optimizer.state_dict()
}, f"{result_dir}/{model}.tar")
print('Finished Training')
# destroy model
del tabct
torch.cuda.empty_cache()
# ref: https://www.kaggle.com/miklgr500/linear-decay-based-on-resnet-cnn
# https://pytorch.org/docs/stable/index.html