-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtrain.py
More file actions
245 lines (184 loc) · 8.13 KB
/
Copy pathtrain.py
File metadata and controls
245 lines (184 loc) · 8.13 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
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
import torch.nn as nn
import torch, h5py
from torch.autograd import Variable
from torch.utils.data import DataLoader
import numpy as np
import cv2 as cv
import os
from tqdm import tqdm
from skimage.metrics import peak_signal_noise_ratio as psnr
import matplotlib.pyplot as plt
from DnCNN import DnCNN, DnCNN_Res
from DnCNN import init_weights
RESUME_TRAINING = False
DEPTH = 40
INPUT_CHANNELS = 3
OUTPUT_CHANNELS = 64
FILTER_SIZE = 3
LEARNING_RATE = 0.01
WEIGHT_DECAY = 0.00001
MOMENTUM = 0.9
END_LR = 0.00001
START_LR = 0.001
LR_EPOCHS = 50
GAMMA = 0.87
NUM_ITERATIONS = 50
class Dataset(torch.utils.data.Dataset):
def __init__(self, file_name):
super(Dataset, self).__init__()
self.file_name = file_name
with h5py.File(file_name, 'r') as data:
self.keys = list(data.keys())
np.random.shuffle(self.keys)
def __len__(self):
return len(self.keys)
def __getitem__(self, index):
with h5py.File(self.file_name, 'r') as data:
example = np.array(data[self.keys[index]])
return torch.Tensor(example)
def shape(self):
with h5py.File(self.file_name, 'r') as data:
return np.array(data[self.keys[0]]).shape
def batch_psnr(clean_image, denoised_image):
clean_image = clean_image.data.cpu().numpy().astype(np.float32)
denoised_image = denoised_image.data.cpu().numpy().astype(np.float32)
batch_psnr_val = 0
for i in range(clean_image.shape[0]):
batch_psnr_val += psnr(clean_image[i,:,:,:], denoised_image[i,:,:,:], data_range=1)
return batch_psnr_val / clean_image.shape[0]
def setup_gpus():
os.environ["CUDA_DEVICE_ORDER"] = "PCI_BUS_ID"
device_ids = [i for i in range(torch.cuda.device_count())]
if len(device_ids) > 3:
device_ids = device_ids[:-1]
os.environ["CUDA_VISIBLE_DEVICES"] = ','.join(map(str, device_ids))
return device_ids
def gen_noise(batch_size, noise_type):
noise = torch.zeros(batch_size)
if noise_type == 'normal':
noise_levels = np.linspace(0,55/255, batch_size[0])
for i, nl in enumerate(noise_levels):
noise[i,:,:,:] = torch.FloatTensor(noise[0,:,:,:].shape).normal_(mean=0, std=nl)
elif noise_type == 'uniform':
noise_levels = np.linspace(0,0.25, batch_size[0])
for i, nl in enumerate(noise_levels):
noise_mask = torch.FloatTensor(np.random.uniform(size=noise[0].shape) < nl )
noise[i,:,:,:] = torch.FloatTensor(noise[0,:,:,:].shape).uniform_(0.0,1.0) * noise_mask
elif noise_type == 'pepper':
noise_levels = np.linspace(0,0.25, batch_size[0])
for i, nl in enumerate(noise_levels):
noise_pepper = np.random.uniform(0.0,1.0, size=noise[0,0].shape)
_, noise_pepper = cv.threshold(noise_pepper, (1-nl), -1.0, cv.THRESH_BINARY)
noise[i,:,:,:] = torch.FloatTensor(noise_pepper)
return noise
def main():
train_set = 'train.h5'
val_set = 'val.h5'
batch_size = 128
assert os.path.exists(train_set), f'Cannot find training vectors file {train_set}'
assert os.path.exists(val_set), f'Cannot find validation vectors file {val_set}'
os.makedirs('logs', exist_ok=True)
print('Loading datasets')
train_data = Dataset(train_set)
val_data = Dataset(val_set)
print(f'Number of training examples: {len(train_data)}')
print(f'Number of validation examples: {len(val_data)}')
# detect gpus and setup environment variables
device_ids = setup_gpus()
print(f'Cuda devices found: {[torch.cuda.get_device_name(i) for i in device_ids]}')
train_loader = DataLoader(dataset=train_data, num_workers=os.cpu_count(), batch_size=batch_size*len(device_ids), shuffle=True)
val_loader = DataLoader(dataset=val_data, num_workers=os.cpu_count(), batch_size=batch_size*len(device_ids), shuffle=False)
model = DnCNN_Res(DEPTH, INPUT_CHANNELS, OUTPUT_CHANNELS, FILTER_SIZE)
model.apply(init_weights)
model = torch.nn.DataParallel(model, device_ids=device_ids).cuda()
print(f'Number of trainable parameters {sum(p.numel() for p in model.parameters() if p.requires_grad)}')
loss = nn.MSELoss().cuda()
optimizer = torch.optim.Adam(model.parameters(), lr=LEARNING_RATE)
scheduler = torch.optim.lr_scheduler.ExponentialLR(optimizer, gamma=GAMMA)
epochs_trained = 0
epoch_losses = []
epoch_val_losses = []
epoch_psnrs = []
if RESUME_TRAINING:
print('Loading checkpoint model to resume training')
checkpoint = torch.load('logs/t_star.state')
optimizer.load_state_dict(checkpoint['optimizer_state_dict'])
scheduler.load_state_dict(checkpoint['scheduler_state_dict'])
model.load_state_dict(checkpoint['model_state_dict'])
epoch_losses = list(checkpoint['epoch_train_losses'])
epoch_val_losses = list(checkpoint['epoch_val_losses'])
epoch_psnrs = list(checkpoint['epoch_psnrs'])
epochs_trained = checkpoint['epoch']
min_val_loss = 1000
print(model)
for epoch in range(NUM_ITERATIONS - epochs_trained):
print(f'Training epoch {epoch+1} with lr={optimizer.param_groups[0]["lr"]}')
epoch_loss = 0
num_steps = 0
model.train()
for batch in tqdm(train_loader):
optimizer.zero_grad()
# DnCNN-S
#noise = torch.FloatTensor(batch.size()).normal_(mean=0, std=25/255)
# DnCNN-B
noise = gen_noise(batch.size(), 'normal')
noisy_image = batch + noise
noisy_image = Variable(noisy_image.cuda())
noise = Variable(noise.cuda())
predict = model(noisy_image)
batch_loss = loss(noise, predict) / batch.size()[0]
epoch_loss += batch_loss.detach()
batch_loss.backward()
optimizer.step()
num_steps += 1
epoch_loss /= num_steps
epoch_losses.append(epoch_loss)
epoch_val_loss = 0
epoch_psnr = 0
num_steps = 0
model.eval()
with torch.no_grad():
for batch in tqdm(val_loader):
# DnCNN-S
#noise = torch.FloatTensor(batch.size()).normal_(mean=0, std=25/255)
# DnCNN-B
noise = gen_noise(batch.size(), 'normal')
noisy_image = batch + noise
noisy_image = Variable(noisy_image.cuda())
noise = Variable(noise.cuda())
predict = model(noisy_image)
val_loss = loss(noise, predict) / batch.size()[0]
epoch_val_loss += val_loss.detach()
# Calculate PSNR
denoised_image = torch.clamp(noisy_image - predict, 0.0, 1.0)
epoch_psnr += batch_psnr(batch, denoised_image)
num_steps += 1
scheduler.step()
epoch_val_loss /= num_steps
epoch_psnr /= num_steps
epoch_val_losses.append(epoch_val_loss)
epoch_psnrs.append(epoch_psnr)
if epoch_val_loss < min_val_loss:
print('Saving best model')
min_val_loss = epoch_val_loss
torch.save({
'epoch': epoch,
'model_state_dict': model.state_dict(),
'optimizer_state_dict': optimizer.state_dict(),
'scheduler_state_dict': scheduler.state_dict(),
'epoch_train_losses': epoch_losses,
'epoch_val_losses': epoch_val_losses,
'epoch_psnrs': epoch_psnrs,
}, 'logs/t_star.state')
torch.save({
'epoch': epoch,
'model_state_dict': model.state_dict(),
'optimizer_state_dict': optimizer.state_dict(),
'scheduler_state_dict': scheduler.state_dict(),
'epoch_train_losses': epoch_losses,
'epoch_val_losses': epoch_val_losses,
'epoch_psnrs': epoch_psnrs,
}, 'logs/model.state')
print(f'Epoch {epoch+1} train loss = {epoch_loss}, val loss = {epoch_val_loss}, PSNR = {epoch_psnr}')
if __name__ == '__main__':
main()