forked from ssghost/vegans
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrain.py
More file actions
78 lines (62 loc) · 2.18 KB
/
train.py
File metadata and controls
78 lines (62 loc) · 2.18 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
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import time
class Train:
"""Performs the training of ``model`` given a training dataset data
loader, the optimizer, and the loss criterion.
Keyword arguments:
- model (``nn.Module``): the model instance to train.
- data_loader (``Dataloader``): Provides single or multi-process
iterators over the dataset.
- optim (``Optimizer``): The optimization algorithm.
- criterion (``Optimizer``): The loss criterion.
- metric (```Metric``): An instance specifying the metric to return.
- device (``torch.device``): An object representing the device on which
tensors are allocated.
"""
def __init__(self, model, data_loader, optim, criterion, metric, device):
self.model = model
self.data_loader = data_loader
self.optim = optim
self.criterion = criterion
self.metric = metric
self.device = device
def run_epoch(self, iteration_loss=0):
"""Runs an epoch of training.
Keyword arguments:
- iteration_loss (``bool``, optional): Prints loss at every step.
Returns:
- The epoch loss (float).
"""
self.model.train()
epoch_loss = 0.0
self.metric.reset()
avgTime = 0.0
numTimeSteps = 0
for step, batch_data in enumerate(self.data_loader):
startTime = time.time()
# Get the inputs and labels
inputs = batch_data[0].to(self.device)
labels = batch_data[1].long().to(self.device)
# Forward propagation
outputs = self.model(inputs)
# Loss computation
loss = self.criterion(outputs, labels)
# Backpropagation
self.optim.zero_grad()
loss.backward()
self.optim.step()
# Keep track of loss for current epoch
epoch_loss += loss.item()
# Keep track of the evaluation metric
self.metric.add(outputs.detach(), labels.detach())
endTime = time.time()
avgTime += (endTime - startTime)
numTimeSteps += 1
if iteration_loss > 0 and (step % iteration_loss == 0):
print("[Step: %d/%d (%3.2f ms)] Iteration loss: %.4f" % (step, len(self.data_loader), \
1000*(avgTime / (numTimeSteps if numTimeSteps>0 else 1)), loss.item()))
numTimeSteps = 0
avgTime = 0.
return epoch_loss / len(self.data_loader), self.metric.value()