-
Notifications
You must be signed in to change notification settings - Fork 104
/
main_2d.py
executable file
·259 lines (210 loc) · 9.25 KB
/
main_2d.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
#!/usr/bin/env python
from __future__ import print_function, division
import os
import time
import numpy as np
import theano
import theano.tensor as T
import lasagne
import argparse
import matplotlib.pyplot as plt
from os.path import join
from scipy.io import loadmat
from utils import compressed_sensing as cs
from utils.metric import complex_psnr
from cascadenet.network.model import build_d2_c2, build_d5_c5
from cascadenet.util.helpers import from_lasagne_format
from cascadenet.util.helpers import to_lasagne_format
def prep_input(im, acc=4):
"""Undersample the batch, then reformat them into what the network accepts.
Parameters
----------
gauss_ivar: float - controls the undersampling rate.
higher the value, more undersampling
"""
mask = cs.cartesian_mask(im.shape, acc, sample_n=8)
im_und, k_und = cs.undersample(im, mask, centred=False, norm='ortho')
im_gnd_l = to_lasagne_format(im)
im_und_l = to_lasagne_format(im_und)
k_und_l = to_lasagne_format(k_und)
mask_l = to_lasagne_format(mask, mask=True)
return im_und_l, k_und_l, mask_l, im_gnd_l
def iterate_minibatch(data, batch_size, shuffle=True):
n = len(data)
if shuffle:
data = np.random.permutation(data)
for i in xrange(0, n, batch_size):
yield data[i:i+batch_size]
def create_dummy_data():
"""
Creates dummy dataset from one knee subject for demo.
In practice, one should take much bigger dataset,
as well as train & test should have similar distribution.
Source: http://mridata.org/
"""
data = loadmat(join(project_root, './data/lustig_knee_p2.mat'))['xn']
nx, ny, nz, nc = data.shape
train = np.transpose(data, (3, 0, 1, 2)).reshape((-1, ny, nz))
validate = np.transpose(data, (3, 1, 0, 2)).reshape((-1, nx, nz))
test = np.transpose(data, (3, 2, 0, 1)).reshape((-1, nx, ny))
return train, validate, test
def compile_fn(network, net_config, args):
"""
Create Training function and validation function
"""
# Hyper-parameters
base_lr = float(args.lr[0])
l2 = float(args.l2[0])
# Theano variables
input_var = net_config['input'].input_var
mask_var = net_config['mask'].input_var
kspace_var = net_config['kspace_input'].input_var
target_var = T.tensor4('targets')
# Objective
pred = lasagne.layers.get_output(network)
# complex valued signal has 2 channels, which counts as 1.
loss_sq = lasagne.objectives.squared_error(target_var, pred).mean() * 2
if l2:
l2_penalty = lasagne.regularization.regularize_network_params(network, lasagne.regularization.l2)
loss = loss_sq + l2_penalty * l2
update_rule = lasagne.updates.adam
params = lasagne.layers.get_all_params(network, trainable=True)
updates = update_rule(loss, params, learning_rate=base_lr)
print(' Compiling ... ')
t_start = time.time()
train_fn = theano.function([input_var, mask_var, kspace_var, target_var],
[loss], updates=updates,
on_unused_input='ignore')
val_fn = theano.function([input_var, mask_var, kspace_var, target_var],
[loss, pred],
on_unused_input='ignore')
t_end = time.time()
print(' ... Done, took %.4f s' % (t_end - t_start))
return train_fn, val_fn
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('--num_epoch', metavar='int', nargs=1, default=['10'],
help='number of epochs')
parser.add_argument('--batch_size', metavar='int', nargs=1, default=['10'],
help='batch size')
parser.add_argument('--lr', metavar='float', nargs=1,
default=['0.001'], help='initial learning rate')
parser.add_argument('--l2', metavar='float', nargs=1,
default=['1e-6'], help='l2 regularisation')
parser.add_argument('--acceleration_factor', metavar='float', nargs=1,
default=['4.0'],
help='Acceleration factor for k-space sampling')
# parser.add_argument('--gauss_ivar', metavar='float', nargs=1,
# default=['0.0015'],
# help='Sensitivity for Gaussian Distribution which'
# 'decides the undersampling rate of the Cartesian mask')
parser.add_argument('--debug', action='store_true', help='debug mode')
parser.add_argument('--savefig', action='store_true',
help='Save output images and masks')
args = parser.parse_args()
# Project config
model_name = 'd2_c2'
#gauss_ivar = float(args.gauss_ivar[0]) # undersampling rate
acc = float(args.acceleration_factor[0]) # undersampling rate
num_epoch = int(args.num_epoch[0])
batch_size = int(args.batch_size[0])
Nx, Ny = 128, 128
save_fig = args.savefig
save_every = 5
# Configure directory info
project_root = '.'
save_dir = join(project_root, 'models/%s' % model_name)
if not os.path.isdir(save_dir):
os.makedirs(save_dir)
# Specify network
input_shape = (batch_size, 2, Nx, Ny)
net_config, net, = build_d2_c2(input_shape)
# # Load D5-C5 with pretrained params
# net_config, net, = build_d5_c5(input_shape)
# D5-C5 with pre-trained parameters
# with np.load('./models/pretrained/d5_c5.npz') as f:
# param_values = [f['arr_{0}'.format(i)] for i in range(len(f.files))]
# lasagne.layers.set_all_param_values(net, param_values)
# Compute acceleration rate
dummy_mask = cs.cartesian_mask((10, Nx, Ny), acc, sample_n=8)
sample_und_factor = cs.undersampling_rate(dummy_mask)
print('Undersampling Rate: {:.2f}'.format(sample_und_factor))
# Compile function
train_fn, val_fn = compile_fn(net, net_config, args)
# Create dataset
train, validate, test = create_dummy_data()
print('Start Training...')
for epoch in xrange(num_epoch):
t_start = time.time()
# Training
train_err = 0
train_batches = 0
for im in iterate_minibatch(train, batch_size, shuffle=True):
im_und, k_und, mask, im_gnd = prep_input(im, acc=acc)
err = train_fn(im_und, mask, k_und, im_gnd)[0]
train_err += err
train_batches += 1
if args.debug and train_batches == 20:
break
validate_err = 0
validate_batches = 0
for im in iterate_minibatch(validate, batch_size, shuffle=False):
im_und, k_und, mask, im_gnd = prep_input(im, acc=acc)
err, pred = val_fn(im_und, mask, k_und, im_gnd)
validate_err += err
validate_batches += 1
if args.debug and validate_batches == 20:
break
vis = []
test_err = 0
base_psnr = 0
test_psnr = 0
test_batches = 0
for im in iterate_minibatch(test, batch_size, shuffle=False):
im_und, k_und, mask, im_gnd = prep_input(im, acc=acc)
err, pred = val_fn(im_und, mask, k_und, im_gnd)
test_err += err
for im_i, und_i, pred_i in zip(im,
from_lasagne_format(im_und),
from_lasagne_format(pred)):
base_psnr += complex_psnr(im_i, und_i, peak='max')
test_psnr += complex_psnr(im_i, pred_i, peak='max')
test_batches += 1
if save_fig and test_batches % save_every == 0:
vis.append((im[0],
from_lasagne_format(pred)[0],
from_lasagne_format(im_und)[0],
from_lasagne_format(mask, mask=True)[0]))
if args.debug and test_batches == 20:
break
t_end = time.time()
train_err /= train_batches
validate_err /= validate_batches
test_err /= test_batches
base_psnr /= (test_batches*batch_size)
test_psnr /= (test_batches*batch_size)
# Then we print the results for this epoch:
print("Epoch {}/{}".format(epoch+1, num_epoch))
print(" time: {}s".format(t_end - t_start))
print(" training loss:\t\t{:.6f}".format(train_err))
print(" validation loss:\t{:.6f}".format(validate_err))
print(" test loss:\t\t{:.6f}".format(test_err))
print(" base PSNR:\t\t{:.6f}".format(base_psnr))
print(" test PSNR:\t\t{:.6f}".format(test_psnr))
# save the model
if epoch in [1, 2, num_epoch-1]:
if save_fig:
i = 0
for im_i, pred_i, und_i, mask_i in vis:
plt.imsave(join(save_dir, 'im{0}.png'.format(i)),
abs(np.concatenate([und_i, pred_i,
im_i, im_i - pred_i], 1)),
cmap='gray')
plt.imsave(join(save_dir, 'mask{0}.png'.format(i)), mask_i,
cmap='gray')
i += 1
name = '%s_epoch_%d.npz' % (model_name, epoch)
np.savez(join(save_dir, name),
*lasagne.layers.get_all_param_values(net))
print('model parameters saved at %s' % join(os.getcwd(), name))
print('')