-
Notifications
You must be signed in to change notification settings - Fork 0
/
solver.py
516 lines (418 loc) · 25.8 KB
/
solver.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
import os
import numpy as np
import torch
import torch.nn as nn
import glob
from collections import OrderedDict
from datetime import datetime
from utils.misc import create_folder, mae
from utils.logging_functions import LogWriter
from utils.early_stopping import EarlyStopping
from torch.optim import lr_scheduler
from torch.nn import L1Loss
checkpoint_extension = 'path.tar'
class Solver():
def __init__(self,
model,
number_of_classes,
experiment_name,
optimizer,
optimizer_arguments={},
loss_function=torch.nn.MSELoss(),
model_name='BrainMapper',
number_epochs=10,
loss_log_period=5,
learning_rate_scheduler_step_size=5,
learning_rate_scheduler_gamma=0.5,
use_last_checkpoint=True,
experiment_directory='experiments',
logs_directory='logs',
checkpoint_directory='checkpoints',
best_checkpoint_directory = 'best_checkpoint_directory',
save_model_directory='saved_models',
learning_rate_validation_scheduler = False,
learning_rate_cyclical = False,
learning_rate_scheduler_patience=5,
learning_rate_scheduler_threshold=1e-6,
learning_rate_scheduler_min_value=5e-6,
learning_rate_scheduler_max_value=5e-5,
learning_rate_scheduler_step_number=13200,
early_stopping_min_patience=50,
early_stopping_patience=10,
early_stopping_min_delta=0,
fused_data_flag = False,
use_transfer_learning = False,
use_pre_trained = False
):
self.model = model
self.parallelism = False
self.device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
if self.device == "cpu":
print("WARNING: Default device is CPU, not GPU!")
elif torch.cuda.device_count()>1:
self.parallelism = True
print("ATTENTION! Multiple GPUs detected. {} GPUs will be used for training".format(torch.cuda.device_count()))
else:
print("A single GPU detected")
if optimizer_arguments['weight_decay']!=0:
prelus = {name for name, module in model.named_modules() if isinstance(module, torch.nn.PReLU)}
prelu_parameter_names = {name for name, _ in model.named_parameters() if name.rsplit('.', 1)[0] in prelus}
parameters = [
{'params': [parameter for parameter_name, parameter in model.named_parameters() if parameter_name not in prelu_parameter_names]},
{'params': [parameter for parameter_name, parameter in model.named_parameters() if parameter_name in prelu_parameter_names], 'weight_decay': 0.0}
]
else:
parameters = model.parameters()
self.optimizer = optimizer(parameters, **optimizer_arguments)
if torch.cuda.is_available():
if hasattr(loss_function, 'to'):
self.loss_function = loss_function.to(self.device)
self.MAE = L1Loss().to(self.device)
else:
self.loss_function = loss_function
self.MAE = L1Loss()
else:
self.loss_function = loss_function
self.model_name = model_name
self.number_epochs = number_epochs
self.loss_log_period = loss_log_period
self.learning_rate_validation_scheduler = learning_rate_validation_scheduler
self.learning_rate_cyclical = learning_rate_cyclical
if self.learning_rate_validation_scheduler == False and self.learning_rate_cyclical == False:
self.learning_rate_scheduler = lr_scheduler.StepLR(optimizer=self.optimizer,
step_size=learning_rate_scheduler_step_size,
gamma=learning_rate_scheduler_gamma)
elif self.learning_rate_validation_scheduler == False and self.learning_rate_cyclical == True:
self.learning_rate_scheduler = lr_scheduler.CyclicLR(optimizer=self.optimizer,
base_lr = learning_rate_scheduler_min_value,
max_lr = learning_rate_scheduler_max_value,
step_size_up = learning_rate_scheduler_step_number,
cycle_momentum=False,
)
elif self.learning_rate_validation_scheduler == True and self.learning_rate_cyclical == False:
self.learning_rate_scheduler = lr_scheduler.ReduceLROnPlateau(optimizer = self.optimizer,
factor = learning_rate_scheduler_gamma,
patience = learning_rate_scheduler_patience,
threshold = learning_rate_scheduler_threshold,
threshold_mode='abs',
min_lr= learning_rate_scheduler_min_value,
verbose=True
)
self.use_last_checkpoint = use_last_checkpoint
experiment_directory_path = os.path.join(experiment_directory, experiment_name)
self.experiment_directory_path = experiment_directory_path
self.checkpoint_directory = checkpoint_directory
self.best_checkpoint_directory = best_checkpoint_directory
create_folder(experiment_directory)
create_folder(experiment_directory_path)
create_folder(os.path.join(experiment_directory_path, self.checkpoint_directory))
create_folder(os.path.join(experiment_directory_path, self.best_checkpoint_directory))
self.start_epoch = 1
self.start_iteration = 1
self.LogWriter = LogWriter(number_of_classes=number_of_classes,
logs_directory=logs_directory,
experiment_name=experiment_name,
use_last_checkpoint=use_last_checkpoint,
)
self.early_stop = False
self.early_stopping_min_patience = early_stopping_min_patience
self.save_model_directory = save_model_directory
self.final_model_output_file = experiment_name + ".pth.tar"
self.best_score_early_stop = None
self.counter_early_stop = 0
self.previous_loss = None
self.valid_epoch = None
self.previous_age_deltas = None
if use_last_checkpoint:
self.load_checkpoint()
self.EarlyStopping = EarlyStopping(patience=early_stopping_patience, min_delta=early_stopping_min_delta, best_score=self.best_score_early_stop, counter=self.counter_early_stop)
else:
self.EarlyStopping = EarlyStopping(patience=early_stopping_patience, min_delta=early_stopping_min_delta)
self.fused_data_flag = fused_data_flag
self.use_transfer_learning = use_transfer_learning
self.use_pre_trained = use_pre_trained
def train(self, train_loader, validation_loader):
model, optimizer, learning_rate_scheduler = self.model, self.optimizer, self.learning_rate_scheduler
dataloaders = {'train': train_loader, 'validation': validation_loader}
if self.parallelism == True:
model = nn.DataParallel(model)
if torch.cuda.is_available():
torch.cuda.empty_cache() # clear memory
model.to(self.device) # Moving the model to GPU
print('****************************************************************')
print('TRAINING IS STARTING!')
print('=====================')
print('Model Name: {}'.format(self.model_name))
if torch.cuda.is_available():
print('Device Type: {}'.format(
torch.cuda.get_device_name(self.device)))
else:
print('Device Type: {}'.format(self.device))
start_time = datetime.now()
print('Started At: {}'.format(start_time))
print('----------------------------------------')
iteration = self.start_iteration
for epoch in range(self.start_epoch, self.number_epochs+1):
if self.use_transfer_learning == True or self.use_pre_trained == True:
self.early_stop = False
if self.early_stop == True:
print("ATTENTION!: Training stopped due to previous early stop flag!")
break
print("Epoch {}/{}".format(epoch, self.number_epochs))
for phase in ['train', 'validation']:
print('-> Phase: {}'.format(phase))
losses = []
age_deltas = []
if phase == 'train':
model.train()
for batch_index, sampled_batch in enumerate(dataloaders[phase]):
X = sampled_batch[0]
y_age = sampled_batch[1].type(torch.FloatTensor)
y_age = y_age.reshape(-1,1)
number_of_modalities = len(X)
# First, torch unsqueeze all dictionary values
# Here, insert flag - if input_fusion flag, then concatenate all and proceed as single value
# In the network, the fusion ones will expect a single value; others will expect a dict
# Try and load all values to cuda in the dict.
for idx in range(number_of_modalities):
X[idx] = X[idx].type(torch.FloatTensor)
if len(X[idx].size())<5:
X[idx] = torch.unsqueeze(X[idx], dim=1) # We add an extra dimension (~ number of channels) for the 3D convolutions.
if self.fused_data_flag == False:
X[idx] = X[idx].cuda(self.device, non_blocking=True)
if self.fused_data_flag == True:
for idx in range(1, number_of_modalities):
if idx == 1:
Xnew = torch.cat((X[0], X[1]), dim=1)
else:
Xnew = torch.cat((Xnew, X[idx]), dim=1)
X = torch.clone(Xnew)
del Xnew
if torch.cuda.is_available():
X = X.cuda(self.device, non_blocking=True)
if torch.cuda.is_available():
y_age = y_age.cuda(self.device, non_blocking=True)
y_hat = model(X) # Forward pass
loss = self.loss_function(y_hat, y_age)
age_delta = self.MAE(y_hat, y_age)
optimizer.zero_grad() # Zero the parameter gradients
loss.backward() # Backward propagation
optimizer.step()
if batch_index % self.loss_log_period == 0:
self.LogWriter.loss_per_iteration(loss.item(), batch_index, iteration)
self.LogWriter.learning_rate_per_iteration(optimizer.param_groups[0]['lr'], batch_index, iteration)
iteration += 1
losses.append(loss.item())
age_deltas.append(age_delta.item())
# Clear the memory
del X, y_hat, loss, y_age, age_delta
torch.cuda.empty_cache()
if self.learning_rate_cyclical == True:
learning_rate_scheduler.step()
else:
model.eval()
with torch.no_grad():
for batch_index, sampled_batch in enumerate(dataloaders[phase]):
X = sampled_batch[0]
y_age = sampled_batch[1].type(torch.FloatTensor)
y_age = y_age.reshape(-1,1)
number_of_modalities = len(X)
for idx in range(number_of_modalities):
X[idx] = X[idx].type(torch.FloatTensor)
if len(X[idx].size())<5:
X[idx] = torch.unsqueeze(X[idx], dim=1) # We add an extra dimension (~ number of channels) for the 3D convolutions.
if self.fused_data_flag == False:
X[idx] = X[idx].cuda(self.device, non_blocking=True)
if self.fused_data_flag == True:
for idx in range(1, number_of_modalities):
if idx == 1:
Xnew = torch.cat((X[0], X[1]), dim=1)
else:
Xnew = torch.cat((Xnew, X[idx]), dim=1)
X = torch.clone(Xnew)
del Xnew
if torch.cuda.is_available():
X = X.cuda(self.device, non_blocking=True)
if torch.cuda.is_available():
y_age = y_age.cuda(self.device, non_blocking=True)
y_hat = model(X) # Forward pass
loss = self.loss_function(y_hat, y_age)
age_delta = self.MAE(y_hat, y_age)
losses.append(loss.item())
age_deltas.append(age_delta.item())
# Clear the memory
del X, y_hat, loss, y_age, age_delta
torch.cuda.empty_cache()
if batch_index != len(dataloaders[phase]) - 1:
print("#", end='', flush=True)
else:
print("100%", flush=True)
with torch.no_grad():
if phase == 'train':
self.LogWriter.loss_per_epoch(losses, phase, epoch)
self.LogWriter.learning_rate_per_epoch(optimizer.param_groups[0]['lr'], phase, epoch)
self.LogWriter.age_delta_per_epoch(age_deltas, phase, epoch)
elif phase == 'validation':
self.LogWriter.loss_per_epoch(losses, phase, epoch, previous_loss=self.previous_loss)
self.previous_loss = np.mean(losses)
self.LogWriter.learning_rate_per_epoch(optimizer.param_groups[0]['lr'], phase, epoch)
self.validation_losses = losses
self.LogWriter.age_delta_per_epoch(age_deltas, phase, epoch, previous_loss=self.previous_age_deltas)
self.previous_age_deltas = np.mean(age_deltas)
if self.learning_rate_cyclical == False:
if self.learning_rate_validation_scheduler == False:
learning_rate_scheduler.step()
else:
learning_rate_scheduler.step(np.mean(self.validation_losses))
with torch.no_grad():
if epoch <= self.early_stopping_min_patience:
counter_overwrite = True
else:
counter_overwrite = False
early_stop, best_score_early_stop, counter_early_stop = self.EarlyStopping(np.mean(self.validation_losses), counter_overwrite=counter_overwrite)
if epoch <= self.early_stopping_min_patience:
self.early_stop = False
self.counter_early_stop = 0
self.best_score_early_stop = None
else:
self.early_stop = early_stop
self.counter_early_stop = counter_early_stop
self.best_score_early_stop = best_score_early_stop
checkpoint_name = os.path.join(self.experiment_directory_path, self.checkpoint_directory, 'checkpoint_epoch_' + str(epoch) + '.' + checkpoint_extension)
best_checkpoint_name = os.path.join(self.experiment_directory_path, self.best_checkpoint_directory, 'best_checkpoint' + '.' + checkpoint_extension)
final_checkpoint_name = os.path.join(self.experiment_directory_path, self.best_checkpoint_directory, 'final_checkpoint' + '.' + checkpoint_extension)
if self.counter_early_stop == 0:
self.valid_epoch = epoch
self.save_checkpoint(state={'epoch': epoch + 1,
'start_iteration': iteration + 1,
'arch': self.model_name,
# 'state_dict': model.state_dict(),
'state_dict': model.module.state_dict() if self.parallelism==True else model.state_dict(),
'optimizer': optimizer.state_dict(),
'scheduler': learning_rate_scheduler.state_dict(),
'best_score_early_stop': self.best_score_early_stop,
'counter_early_stop': self.counter_early_stop,
'previous_loss': self.previous_loss,
'previous_age_deltas': self.previous_age_deltas,
'early_stop': self.early_stop,
'valid_epoch': self.valid_epoch
},
filename=best_checkpoint_name
)
self.save_checkpoint(state={'epoch': epoch + 1,
'start_iteration': iteration + 1,
'arch': self.model_name,
# 'state_dict': model.state_dict(),
'state_dict': model.module.state_dict() if self.parallelism==True else model.state_dict(),
'optimizer': optimizer.state_dict(),
'scheduler': learning_rate_scheduler.state_dict(),
'best_score_early_stop': self.best_score_early_stop,
'counter_early_stop': self.counter_early_stop,
'previous_loss': self.previous_loss,
'previous_age_deltas': self.previous_age_deltas,
'early_stop': self.early_stop,
'valid_epoch': self.valid_epoch
},
filename=checkpoint_name
)
if epoch == self.number_epochs:
self.save_checkpoint(state={'epoch': epoch + 1,
'start_iteration': iteration + 1,
'arch': self.model_name,
# 'state_dict': model.state_dict(),
'state_dict': model.module.state_dict() if self.parallelism==True else model.state_dict(),
'optimizer': optimizer.state_dict(),
'scheduler': learning_rate_scheduler.state_dict(),
'best_score_early_stop': self.best_score_early_stop,
'counter_early_stop': self.counter_early_stop,
'previous_loss': self.previous_loss,
'previous_age_deltas': self.previous_age_deltas,
'early_stop': self.early_stop,
'valid_epoch': self.valid_epoch
},
filename=final_checkpoint_name
)
print("Epoch {}/{} DONE!".format(epoch, self.number_epochs))
# Early Stop Condition
if self.use_transfer_learning == True or self.use_pre_trained == True:
self.early_stop = False
continue
else:
if self.early_stop == True:
print("ATTENTION!: Training stopped early to prevent overfitting!")
self.load_checkpoint(epoch=self.valid_epoch)
break
else:
continue
if self.early_stop == True:
self.LogWriter.close()
print('----------------------------------------')
print('NO TRAINING DONE TO PREVENT OVERFITTING!')
print('=====================')
end_time = datetime.now()
print('Completed At: {}'.format(end_time))
print('Training Duration: {}'.format(end_time - start_time))
print('****************************************************************')
else:
model_output_path = os.path.join(self.save_model_directory, self.final_model_output_file)
create_folder(self.save_model_directory)
self.load_checkpoint(epoch=self.valid_epoch) # We always save the best epoch even if not overfitting
if self.parallelism == True:
torch.save(model.module.state_dict(), model_output_path)
else:
torch.save(model.state_dict(), model_output_path)
self.LogWriter.close()
print('----------------------------------------')
print('TRAINING IS COMPLETE!')
print('=====================')
end_time = datetime.now()
print('Completed At: {}'.format(end_time))
print('Training Duration: {}'.format(end_time - start_time))
print('Final Model Saved in: {}'.format(model_output_path))
print('****************************************************************')
def save_checkpoint(self, state, filename):
torch.save(state, filename)
def load_checkpoint(self, epoch=None):
if epoch is not None:
checkpoint_file_path = os.path.join(self.experiment_directory_path, self.checkpoint_directory, 'checkpoint_epoch_' + str(epoch) + '.' + checkpoint_extension)
print("Loading checkpoint at path: ", checkpoint_file_path)
self._checkpoint_reader(checkpoint_file_path)
else:
universal_path = os.path.join(self.experiment_directory_path, self.checkpoint_directory, '*.' + checkpoint_extension)
checkpoint_file_path = os.path.join(self.experiment_directory_path, self.checkpoint_directory, 'checkpoint_epoch_' + str(len(glob.glob(universal_path))) + '.' + checkpoint_extension)
print("Loading checkpoint at path: ", checkpoint_file_path)
self._checkpoint_reader(checkpoint_file_path)
def _checkpoint_reader(self, checkpoint_file_path):
self.LogWriter.log("Loading Checkpoint {}".format(checkpoint_file_path))
checkpoint = torch.load(checkpoint_file_path)
self.start_epoch = checkpoint['epoch']
self.start_iteration = checkpoint['start_iteration']
# We are not loading the model_name as we might want to pre-train a model and then use it.
if self.parallelism == True:
# The model is defined without parallel training in mind, which means that if we are training using multiple GPUs, the "module." is added to all keys in the state dict.
# To allow the state-dict loader to be compatible, the "module." strings needs to be removed.
correct_state_dict = {}
for key in checkpoint['state_dict'].keys():
if key.startswith('module.'):
new_key = key.replace('module.', "")
correct_state_dict[new_key] = checkpoint['state_dict'][key]
else:
correct_state_dict[key] = checkpoint['state_dict'][key]
correct_state_dict = OrderedDict(correct_state_dict)
del checkpoint['state_dict']
checkpoint['state_dict'] = correct_state_dict
self.model.load_state_dict(checkpoint['state_dict'])
self.optimizer.load_state_dict(checkpoint['optimizer'])
self.best_score_early_stop = checkpoint['best_score_early_stop']
self.counter_early_stop = checkpoint['counter_early_stop']
self.previous_loss = checkpoint['previous_loss']
self.early_stop = checkpoint['early_stop']
self.valid_epoch = checkpoint['valid_epoch']
self.previous_age_deltas = checkpoint['previous_age_deltas']
for state in self.optimizer.state.values():
for key, value in state.items():
if torch.is_tensor(value):
state[key] = value.to(self.device)
self.learning_rate_scheduler.load_state_dict(checkpoint['scheduler'])
self.LogWriter.log(
"Checkpoint Loaded {} - epoch {}".format(checkpoint_file_path, checkpoint['epoch']))