-
Notifications
You must be signed in to change notification settings - Fork 164
/
5.2-part2-plain-pytorch-mlp.py
107 lines (76 loc) · 3.07 KB
/
5.2-part2-plain-pytorch-mlp.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
# Unit 5.2. Training a Multilayer Perceptron in PyTorch & Lightning
# Part 2. Training a Multilayer Perceptron in pure PyTorch
import torch
import torch.nn.functional as F
from shared_utilities import PyTorchMLP, compute_accuracy, get_dataset_loaders
from watermark import watermark
def compute_total_loss(model, dataloader, device=None):
if device is None:
device = torch.device(device)
model = model.eval()
loss = 0.0
examples = 0.0
for idx, (features, labels) in enumerate(dataloader):
features, labels = features.to(device), labels.to(device)
with torch.no_grad():
logits = model(features)
batch_loss = F.cross_entropy(logits, labels, reduction="sum")
loss += batch_loss.item()
examples += logits.shape[0]
return loss / examples
def train(
model, optimizer, train_loader, val_loader, num_epochs=10, seed=1, device=None):
if device is None:
device = torch.device(device)
torch.manual_seed(seed)
for epoch in range(num_epochs):
model = model.train()
for batch_idx, (features, labels) in enumerate(train_loader):
features, labels = features.to(device), labels.to(device)
logits = model(features)
loss = F.cross_entropy(logits, labels)
optimizer.zero_grad()
loss.backward()
optimizer.step()
if not batch_idx % 250:
val_loss = compute_total_loss(model, val_loader, device=device)
# train_loss = compute_total_loss(model, train_loader, device=device)
# LOGGING
print(
f"Epoch: {epoch+1:03d}/{num_epochs:03d}"
f" | Batch {batch_idx:03d}/{len(train_loader):03d}"
f" | Train Batch Loss: {loss:.4f}"
# f" | Train Total Loss: {train_loss:.4f}"
f" | Val Total Loss: {val_loss:.4f}"
)
if __name__ == "__main__":
print(watermark(packages="torch,lightning", python=True))
print("Torch CUDA available?", torch.cuda.is_available())
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
train_loader, val_loader, test_loader = get_dataset_loaders()
model = PyTorchMLP(num_features=784, num_classes=10)
model.to(device)
optimizer = torch.optim.SGD(model.parameters(), lr=0.05)
train(
model,
optimizer,
train_loader=train_loader,
val_loader=val_loader,
num_epochs=10,
seed=1,
device=device,
)
train_acc = compute_accuracy(model, train_loader, device=device)
val_acc = compute_accuracy(model, val_loader, device=device)
test_acc = compute_accuracy(model, test_loader, device=device)
print(
f"Train Acc {train_acc*100:.2f}%"
f" | Val Acc {val_acc*100:.2f}%"
f" | Test Acc {test_acc*100:.2f}%"
)
PATH = "plain-pytorch.pt"
torch.save(model.state_dict(), PATH)
# To load model:
# model = PyTorchMLP(num_features=784, num_classes=10)
# model.load_state_dict(torch.load(PATH))
# model.eval()