def build_data_dict(self, layer_features, k=5):
"""
This build dict[id] = {label, spacing, 1={loc, p, layer1_feature, layer2_feature...}, 2={}...}
:param layer_features: features from layer, e.g 67, 77
:param k: number of nodule considered as inputs
:return: a combined dictionary
"""
with open(self.pkl_dir + self.data_file_name, 'rb') as data_file:
data = cPickle.load(data_file)
with open(self.pkl_dir + self.feature_file_name, 'rb') as feature_file:
features = cPickle.load(feature_file)
data_dict = {}
for d,f in zip(data, features):
pid = d['id']
data_dict[pid] = {'label':d['label'], 'spacing':d['spacing']}
# add the features
for i in range(k):
data_dict[pid][i] = {'loc': f['loc_{}'.format(i)], 'p': f['p_{}'.format(i)]}
for layer in layer_features:
data_dict[pid][i][layer] = f['out_{}_{}'.format(i, layer)]
return data_dict
评论列表
文章目录