-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfusion.py
More file actions
209 lines (169 loc) · 9.73 KB
/
Copy pathfusion.py
File metadata and controls
209 lines (169 loc) · 9.73 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
import os
import numpy as np
from PIL import Image
import pandas as pd
import torch
from torch.utils.data import Dataset
# import
import glob
import torchvision.transforms as transforms
from torch.utils.data import DataLoader
import random
R_CLASSES = ['Atelectasis', 'Cardiomegaly', 'Consolidation', 'Edema',
'Enlarged Cardiomediastinum', 'Fracture', 'Lung Lesion',
'Lung Opacity', 'No Finding', 'Pleural Effusion', 'Pleural Other',
'Pneumonia', 'Pneumothorax', 'Support Devices']
CLASSES = [
'Acute and unspecified renal failure', 'Acute cerebrovascular disease',
'Acute myocardial infarction', 'Cardiac dysrhythmias',
'Chronic kidney disease',
'Chronic obstructive pulmonary disease and bronchiectasis',
'Complications of surgical procedures or medical care',
'Conduction disorders', 'Congestive heart failure; nonhypertensive',
'Coronary atherosclerosis and other heart disease',
'Diabetes mellitus with complications',
'Diabetes mellitus without complication',
'Disorders of lipid metabolism', 'Essential hypertension',
'Fluid and electrolyte disorders', 'Gastrointestinal hemorrhage',
'Hypertension with complications and secondary hypertension',
'Other liver diseases', 'Other lower respiratory disease',
'Other upper respiratory disease',
'Pleurisy; pneumothorax; pulmonary collapse',
'Pneumonia (except that caused by tuberculosis or sexually transmitted disease)',
'Respiratory failure; insufficiency; arrest (adult)',
'Septicemia (except in labor)', 'Shock'
]
class MIMIC_CXR_EHR(Dataset):
def __init__(self, args, metadata_with_labels, ehr_ds, cxr_ds, split='train'):
self.CLASSES = CLASSES
if 'radiology' in args.labels_set:
self.CLASSES = R_CLASSES
self.metadata_with_labels = metadata_with_labels
self.cxr_files_paired = self.metadata_with_labels.dicom_id.values
self.ehr_files_paired = (self.metadata_with_labels['stay'].values)
self.cxr_files_all = cxr_ds.filenames_loaded
self.ehr_files_all = ehr_ds.names
self.ehr_files_unpaired = list(set(self.ehr_files_all) - set(self.ehr_files_paired))
self.ehr_ds = ehr_ds
self.cxr_ds = cxr_ds
self.args = args
self.split = split
self.data_ratio = self.args.data_ratio
if split=='test':
self.data_ratio = 1.0
elif split == 'val':
self.data_ratio = 0.0
def __getitem__(self, index):
if self.args.data_pairs == 'paired_ehr_cxr':
ehr_data, labels_ehr = self.ehr_ds[self.ehr_files_paired[index]]
cxr_data, labels_cxr = self.cxr_ds[self.cxr_files_paired[index]]
return ehr_data, cxr_data, labels_ehr, labels_cxr
elif self.args.data_pairs == 'paired_ehr':
ehr_data, labels_ehr = self.ehr_ds[self.ehr_files_paired[index]]
cxr_data, labels_cxr = None, None
return ehr_data, cxr_data, labels_ehr, labels_cxr
elif self.args.data_pairs == 'radiology':
ehr_data, labels_ehr = np.zeros((1, 10)), np.zeros(self.args.num_classes)
cxr_data, labels_cxr = self.cxr_ds[self.cxr_files_all[index]]
return ehr_data, cxr_data, labels_ehr, labels_cxr
elif self.args.data_pairs == 'partial_ehr':
ehr_data, labels_ehr = self.ehr_ds[self.ehr_files_all[index]]
cxr_data, labels_cxr = None, None
return ehr_data, cxr_data, labels_ehr, labels_cxr
elif self.args.data_pairs == 'partial_ehr_cxr':
if index < len(self.ehr_files_paired):
ehr_data, labels_ehr = self.ehr_ds[self.ehr_files_paired[index]]
cxr_data, labels_cxr = self.cxr_ds[self.cxr_files_paired[index]]
else:
index = random.randint(0, len(self.ehr_files_unpaired)-1)
ehr_data, labels_ehr = self.ehr_ds[self.ehr_files_unpaired[index]]
cxr_data, labels_cxr = None, None
return ehr_data, cxr_data, labels_ehr, labels_cxr
def __len__(self):
if 'paired' in self.args.data_pairs:
return len(self.ehr_files_paired)
elif self.args.data_pairs == 'partial_ehr':
return len(self.ehr_files_all)
elif self.args.data_pairs == 'radiology':
return len(self.cxr_files_all)
elif self.args.data_pairs == 'partial_ehr_cxr':
return len(self.ehr_files_paired) + int(self.data_ratio * len(self.ehr_files_unpaired))
def loadmetadata(args):
data_dir = args.cxr_data_dir
cxr_metadata = pd.read_csv(f'{data_dir}/mimic-cxr-2.0.0-metadata.csv')
icu_stay_metadata = pd.read_csv(f'{args.ehr_data_dir}/root/all_stays.csv')
columns = ['subject_id', 'stay_id', 'intime', 'outtime']
# only common subjects with both icu stay and an xray
cxr_merged_icustays = cxr_metadata.merge(icu_stay_metadata[columns ], how='inner', on='subject_id')
# combine study date time
cxr_merged_icustays['StudyTime'] = cxr_merged_icustays['StudyTime'].apply(lambda x: f'{int(float(x)):06}' )
cxr_merged_icustays['StudyDateTime'] = pd.to_datetime(cxr_merged_icustays['StudyDate'].astype(str) + ' ' + cxr_merged_icustays['StudyTime'].astype(str) ,format="%Y%m%d %H%M%S")
cxr_merged_icustays.intime=pd.to_datetime(cxr_merged_icustays.intime)
cxr_merged_icustays.outtime=pd.to_datetime(cxr_merged_icustays.outtime)
end_time = cxr_merged_icustays.outtime
if args.task == 'in-hospital-mortality':
end_time = cxr_merged_icustays.intime + pd.DateOffset(hours=48)
cxr_merged_icustays_during = cxr_merged_icustays.loc[(cxr_merged_icustays.StudyDateTime>=cxr_merged_icustays.intime)&((cxr_merged_icustays.StudyDateTime<=end_time))]
# cxr_merged_icustays_during = cxr_merged_icustays.loc[(cxr_merged_icustays.StudyDateTime>=cxr_merged_icustays.intime)&((cxr_merged_icustays.StudyDateTime<=cxr_merged_icustays.outtime))]
# select cxrs with the ViewPosition == 'AP
cxr_merged_icustays_AP = cxr_merged_icustays_during[cxr_merged_icustays_during['ViewPosition'] == 'AP']
groups = cxr_merged_icustays_AP.groupby('stay_id')
groups_selected = []
for group in groups:
# select the latest cxr for the icu stay
selected = group[1].sort_values('StudyDateTime').tail(1).reset_index()
groups_selected.append(selected)
groups = pd.concat(groups_selected, ignore_index=True)
# import pdb; pdb.set_trace()
# groups['cxr_length'] = (groups['StudyDateTime'] - groups['intime']).astype('timedelta64[h]')
return groups
# def
def load_cxr_ehr(args, ehr_train_ds, ehr_val_ds, cxr_train_ds, cxr_val_ds, ehr_test_ds, cxr_test_ds):
cxr_merged_icustays = loadmetadata(args)
# cxr_merged_icustays['cxr_length'] = (cxr_merged_icustays['StudyDateTime'] - cxr_merged_icustays['intime'] ).astype('timedelta64[h]')
# import pdb; pdb.set_trace()
splits_labels_train = pd.read_csv(f'{args.ehr_data_dir}/{args.task}/train_listfile.csv')
splits_labels_val = pd.read_csv(f'{args.ehr_data_dir}/{args.task}/val_listfile.csv')
splits_labels_test = pd.read_csv(f'{args.ehr_data_dir}/{args.task}/test_listfile.csv')
train_meta_with_labels = cxr_merged_icustays.merge(splits_labels_train, how='inner', on='stay_id')
val_meta_with_labels = cxr_merged_icustays.merge(splits_labels_val, how='inner', on='stay_id')
test_meta_with_labels = cxr_merged_icustays.merge(splits_labels_test, how='inner', on='stay_id')
train_ds = MIMIC_CXR_EHR(args, train_meta_with_labels, ehr_train_ds, cxr_train_ds)
val_ds = MIMIC_CXR_EHR(args, val_meta_with_labels, ehr_val_ds, cxr_val_ds, split='val')
test_ds = MIMIC_CXR_EHR(args, test_meta_with_labels, ehr_test_ds, cxr_test_ds, split='test')
# printPrevalence(train_meta_with_labels, args)
# printPrevalence(val_meta_with_labels, args)
# printPrevalence(test_meta_with_labels, args)
# printPrevalence(splits_labels_train, args)
# printPrevalence(splits_labels_val, args)
# printPrevalence(splits_labels_test, args)
train_dl = DataLoader(train_ds, args.batch_size, shuffle=True, collate_fn=my_collate, pin_memory=True, num_workers=16, drop_last=True)
val_dl = DataLoader(val_ds, args.batch_size, shuffle=False, collate_fn=my_collate, pin_memory=True, num_workers=16, drop_last=False)
test_dl = DataLoader(test_ds, args.batch_size, shuffle=False, collate_fn=my_collate, pin_memory=True, num_workers=16, drop_last=False)
return train_dl, val_dl, test_dl
def printPrevalence(merged_file, args):
if args.labels_set == 'pheno':
total_rows = len(merged_file)
print(merged_file[CLASSES].sum()/total_rows)
else:
total_rows = len(merged_file)
print(merged_file['y_true'].value_counts())
# import pdb; pdb.set_trace()
def my_collate(batch):
x = [item[0] for item in batch]
pairs = [False if item[1] is None else True for item in batch]
img = torch.stack([torch.zeros(3, 224, 224) if item[1] is None else item[1] for item in batch])
x, seq_length = pad_zeros(x)
targets_ehr = np.array([item[2] for item in batch])
targets_cxr = torch.stack([torch.zeros(14) if item[3] is None else item[3] for item in batch])
return [x, img, targets_ehr, targets_cxr, seq_length, pairs]
def pad_zeros(arr, min_length=None):
dtype = arr[0].dtype
seq_length = [x.shape[0] for x in arr]
max_len = max(seq_length)
ret = [np.concatenate([x, np.zeros((max_len - x.shape[0],) + x.shape[1:], dtype=dtype)], axis=0)
for x in arr]
if (min_length is not None) and ret[0].shape[0] < min_length:
ret = [np.concatenate([x, np.zeros((min_length - x.shape[0],) + x.shape[1:], dtype=dtype)], axis=0)
for x in ret]
return np.array(ret), seq_length