forked from Lornatang/ResNet-PyTorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrain.py
350 lines (276 loc) · 13 KB
/
train.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
# Copyright 2022 Dakewe Biotech Corporation. All Rights Reserved.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
import os
import time
import torch
from torch import nn
from torch import optim
from torch.cuda import amp
from torch.optim import lr_scheduler
from torch.optim.swa_utils import AveragedModel
from torch.utils.data import DataLoader
from torch.utils.tensorboard import SummaryWriter
import config
import model
from dataset import CUDAPrefetcher, ImageDataset
from utils import accuracy, load_state_dict, make_directory, save_checkpoint, Summary, AverageMeter, ProgressMeter
model_names = sorted(
name for name in model.__dict__ if name.islower() and not name.startswith("__") and callable(model.__dict__[name]))
def main():
# Initialize the number of training epochs
start_epoch = 0
# Initialize training network evaluation indicators
best_acc1 = 0.0
train_prefetcher, valid_prefetcher = load_dataset()
print(f"Load `{config.model_arch_name}` datasets successfully.")
resnet_model, ema_resnet_model = build_model()
print(f"Build `{config.model_arch_name}` model successfully.")
pixel_criterion = define_loss()
print("Define all loss functions successfully.")
optimizer = define_optimizer(resnet_model)
print("Define all optimizer functions successfully.")
scheduler = define_scheduler(optimizer)
print("Define all optimizer scheduler functions successfully.")
print("Check whether to load pretrained model weights...")
if config.pretrained_model_weights_path:
resnet_model, ema_resnet_model, start_epoch, best_acc1, optimizer, scheduler = load_state_dict(
resnet_model,
config.pretrained_model_weights_path,
ema_resnet_model,
start_epoch,
best_acc1,
optimizer,
scheduler)
print(f"Loaded `{config.pretrained_model_weights_path}` pretrained model weights successfully.")
else:
print("Pretrained model weights not found.")
print("Check whether the pretrained model is restored...")
if config.resume:
resnet_model, ema_resnet_model, start_epoch, best_acc1, optimizer, scheduler = load_state_dict(
resnet_model,
config.pretrained_model_weights_path,
ema_resnet_model,
start_epoch,
best_acc1,
optimizer,
scheduler,
"resume")
print("Loaded pretrained generator model weights.")
else:
print("Resume training model not found. Start training from scratch.")
# Create a experiment results
samples_dir = os.path.join("samples", config.exp_name)
results_dir = os.path.join("results", config.exp_name)
make_directory(samples_dir)
make_directory(results_dir)
# Create training process log file
writer = SummaryWriter(os.path.join("samples", "logs", config.exp_name))
# Initialize the gradient scaler
scaler = amp.GradScaler()
for epoch in range(start_epoch, config.epochs):
train(resnet_model, ema_resnet_model, train_prefetcher, pixel_criterion, optimizer, epoch, scaler, writer)
acc1 = validate(ema_resnet_model, valid_prefetcher, epoch, writer, "Valid")
print("\n")
# Update LR
scheduler.step()
# Automatically save the model with the highest index
is_best = acc1 > best_acc1
is_last = (epoch + 1) == config.epochs
best_acc1 = max(acc1, best_acc1)
save_checkpoint({"epoch": epoch + 1,
"best_acc1": best_acc1,
"state_dict": resnet_model.state_dict(),
"ema_state_dict": ema_resnet_model.state_dict(),
"optimizer": optimizer.state_dict(),
"scheduler": scheduler.state_dict()},
f"epoch_{epoch + 1}.pth.tar",
samples_dir,
results_dir,
is_best,
is_last)
def load_dataset() -> [CUDAPrefetcher, CUDAPrefetcher]:
# Load train, test and valid datasets
train_dataset = ImageDataset(config.train_image_dir,
config.image_size,
config.model_mean_parameters,
config.model_std_parameters,
"Train")
valid_dataset = ImageDataset(config.valid_image_dir,
config.image_size,
config.model_mean_parameters,
config.model_std_parameters,
"Valid")
# Generator all dataloader
train_dataloader = DataLoader(train_dataset,
batch_size=config.batch_size,
shuffle=True,
num_workers=config.num_workers,
pin_memory=True,
drop_last=True,
persistent_workers=True)
valid_dataloader = DataLoader(valid_dataset,
batch_size=config.batch_size,
shuffle=False,
num_workers=config.num_workers,
pin_memory=True,
drop_last=False,
persistent_workers=True)
# Place all data on the preprocessing data loader
train_prefetcher = CUDAPrefetcher(train_dataloader, config.device)
valid_prefetcher = CUDAPrefetcher(valid_dataloader, config.device)
return train_prefetcher, valid_prefetcher
def build_model() -> [nn.Module, nn.Module]:
resnet_model = model.__dict__[config.model_arch_name](num_classes=config.model_num_classes)
resnet_model = resnet_model.to(device=config.device, memory_format=torch.channels_last)
ema_avg = lambda averaged_model_parameter, model_parameter, num_averaged: (1 - config.model_ema_decay) * averaged_model_parameter + config.model_ema_decay * model_parameter
ema_resnet_model = AveragedModel(resnet_model, avg_fn=ema_avg)
return resnet_model, ema_resnet_model
def define_loss() -> nn.CrossEntropyLoss:
criterion = nn.CrossEntropyLoss(label_smoothing=config.loss_label_smoothing)
criterion = criterion.to(device=config.device, memory_format=torch.channels_last)
return criterion
def define_optimizer(model) -> optim.SGD:
optimizer = optim.SGD(model.parameters(),
lr=config.model_lr,
momentum=config.model_momentum,
weight_decay=config.model_weight_decay)
return optimizer
def define_scheduler(optimizer: optim.SGD) -> lr_scheduler.CosineAnnealingWarmRestarts:
scheduler = lr_scheduler.CosineAnnealingWarmRestarts(optimizer,
config.lr_scheduler_T_0,
config.lr_scheduler_T_mult,
config.lr_scheduler_eta_min)
return scheduler
def train(
model: nn.Module,
ema_model: nn.Module,
train_prefetcher: CUDAPrefetcher,
criterion: nn.CrossEntropyLoss,
optimizer: optim.Adam,
epoch: int,
scaler: amp.GradScaler,
writer: SummaryWriter
) -> None:
# Calculate how many batches of data are in each Epoch
batches = len(train_prefetcher)
# Print information of progress bar during training
batch_time = AverageMeter("Time", ":6.3f")
data_time = AverageMeter("Data", ":6.3f")
losses = AverageMeter("Loss", ":6.6f")
acc1 = AverageMeter("Acc@1", ":6.2f")
acc5 = AverageMeter("Acc@5", ":6.2f")
progress = ProgressMeter(batches,
[batch_time, data_time, losses, acc1, acc5],
prefix=f"Epoch: [{epoch + 1}]")
# Put the generative network model in training mode
model.train()
# Initialize the number of data batches to print logs on the terminal
batch_index = 0
# Initialize the data loader and load the first batch of data
train_prefetcher.reset()
batch_data = train_prefetcher.next()
# Get the initialization training time
end = time.time()
while batch_data is not None:
# Calculate the time it takes to load a batch of data
data_time.update(time.time() - end)
# Transfer in-memory data to CUDA devices to speed up training
images = batch_data["image"].to(device=config.device, memory_format=torch.channels_last, non_blocking=True)
target = batch_data["target"].to(device=config.device, non_blocking=True)
# Get batch size
batch_size = images.size(0)
# Initialize generator gradients
model.zero_grad(set_to_none=True)
# Mixed precision training
with amp.autocast():
output = model(images)
loss = config.loss_weights * criterion(output, target)
# Backpropagation
scaler.scale(loss).backward()
# update generator weights
scaler.step(optimizer)
scaler.update()
# Update EMA
ema_model.update_parameters(model)
# measure accuracy and record loss
top1, top5 = accuracy(output, target, topk=(1, 5))
losses.update(loss.item(), batch_size)
acc1.update(top1[0].item(), batch_size)
acc5.update(top5[0].item(), batch_size)
# Calculate the time it takes to fully train a batch of data
batch_time.update(time.time() - end)
end = time.time()
# Write the data during training to the training log file
if batch_index % config.train_print_frequency == 0:
# Record loss during training and output to file
writer.add_scalar("Train/Loss", loss.item(), batch_index + epoch * batches + 1)
progress.display(batch_index + 1)
# Preload the next batch of data
batch_data = train_prefetcher.next()
# Add 1 to the number of data batches to ensure that the terminal prints data normally
batch_index += 1
def validate(
ema_model: nn.Module,
data_prefetcher: CUDAPrefetcher,
epoch: int,
writer: SummaryWriter,
mode: str
) -> float:
# Calculate how many batches of data are in each Epoch
batches = len(data_prefetcher)
batch_time = AverageMeter("Time", ":6.3f", Summary.NONE)
acc1 = AverageMeter("Acc@1", ":6.2f", Summary.AVERAGE)
acc5 = AverageMeter("Acc@5", ":6.2f", Summary.AVERAGE)
progress = ProgressMeter(batches, [batch_time, acc1, acc5], prefix=f"{mode}: ")
# Put the exponential moving average model in the verification mode
ema_model.eval()
# Initialize the number of data batches to print logs on the terminal
batch_index = 0
# Initialize the data loader and load the first batch of data
data_prefetcher.reset()
batch_data = data_prefetcher.next()
# Get the initialization test time
end = time.time()
with torch.no_grad():
while batch_data is not None:
# Transfer in-memory data to CUDA devices to speed up training
images = batch_data["image"].to(device=config.device, memory_format=torch.channels_last, non_blocking=True)
target = batch_data["target"].to(device=config.device, non_blocking=True)
# Get batch size
batch_size = images.size(0)
# Inference
output = ema_model(images)
# measure accuracy and record loss
top1, top5 = accuracy(output, target, topk=(1, 5))
acc1.update(top1[0].item(), batch_size)
acc5.update(top5[0].item(), batch_size)
# Calculate the time it takes to fully train a batch of data
batch_time.update(time.time() - end)
end = time.time()
# Write the data during training to the training log file
if batch_index % config.valid_print_frequency == 0:
progress.display(batch_index + 1)
# Preload the next batch of data
batch_data = data_prefetcher.next()
# Add 1 to the number of data batches to ensure that the terminal prints data normally
batch_index += 1
# print metrics
progress.display_summary()
if mode == "Valid" or mode == "Test":
writer.add_scalar(f"{mode}/Acc@1", acc1.avg, epoch + 1)
else:
raise ValueError("Unsupported mode, please use `Valid` or `Test`.")
return acc1.avg
if __name__ == "__main__":
main()