forked from ml-explore/mlx-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
torch_main.py
90 lines (72 loc) · 2.46 KB
/
torch_main.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
# Copyright © 2023 Apple Inc.
import argparse
import torch
import time
import mnist
class MLP(torch.nn.Module):
def __init__(self, num_layers, input_dim, hidden_dim, output_dim):
super().__init__()
layer_sizes = [hidden_dim] * num_layers
self.layers = torch.nn.ModuleList(
[
torch.nn.Linear(idim, odim)
for idim, odim in zip(
[input_dim] + layer_sizes, layer_sizes + [output_dim]
)
]
)
def forward(self, x):
x = self.layers[0](x)
for l in self.layers[1:]:
x = l(x.relu())
return x
def loss_fn(model, X, y):
logits = model(X)
return torch.nn.functional.cross_entropy(logits, y)
@torch.no_grad()
def eval_fn(model, X, y):
logits = model(X)
return torch.mean((logits.argmax(-1) == y).float())
def batch_iterate(batch_size, X, y, device):
perm = torch.randperm(len(y), device=device)
for s in range(0, len(y), batch_size):
ids = perm[s : s + batch_size]
yield X[ids], y[ids]
if __name__ == "__main__":
parser = argparse.ArgumentParser("Train a simple MLP on MNIST with PyTorch.")
parser.add_argument("--gpu", action="store_true", help="Use the Metal back-end.")
args = parser.parse_args()
if not args.gpu:
torch.set_num_threads(1)
device = "cpu"
else:
device = "mps"
seed = 0
num_layers = 2
hidden_dim = 32
num_classes = 10
batch_size = 256
num_epochs = 10
learning_rate = 1e-1
# Load the data
def to_tensor(x):
if x.dtype != "uint32":
return torch.from_numpy(x).to(device)
else:
return torch.from_numpy(x.astype(int)).to(device)
train_images, train_labels, test_images, test_labels = map(to_tensor, mnist.mnist())
# Load the model
model = MLP(num_layers, train_images.shape[-1], hidden_dim, num_classes).to(device)
opt = torch.optim.SGD(model.parameters(), lr=learning_rate, momentum=0.0)
for e in range(num_epochs):
tic = time.perf_counter()
for X, y in batch_iterate(batch_size, train_images, train_labels, device):
opt.zero_grad()
loss_fn(model, X, y).backward()
opt.step()
accuracy = eval_fn(model, test_images, test_labels)
toc = time.perf_counter()
print(
f"Epoch {e}: Test accuracy {accuracy.item():.3f},"
f" Time {toc - tic:.3f} (s)"
)