tinygrad/test/test_mnist.py

73 lines
2.0 KiB
Python
Raw Normal View History

2020-10-19 01:16:01 +08:00
#!/usr/bin/env python
import os
import unittest
2020-10-19 01:16:01 +08:00
import numpy as np
from tinygrad.tensor import Tensor
2020-10-23 20:46:45 +08:00
import tinygrad.optim as optim
from extra.training import train, evaluate
2021-10-31 11:07:31 +08:00
from extra.utils import get_parameters
2021-10-31 10:55:50 +08:00
from datasets import fetch_mnist
2020-10-19 01:16:01 +08:00
# load the mnist dataset
2020-10-19 04:30:25 +08:00
X_train, Y_train, X_test, Y_test = fetch_mnist()
2020-10-19 01:16:01 +08:00
2020-10-19 05:55:20 +08:00
# create a model
2020-10-19 04:08:14 +08:00
class TinyBobNet:
2020-10-19 04:08:14 +08:00
def __init__(self):
self.l1 = Tensor.uniform(784, 128)
self.l2 = Tensor.uniform(128, 10)
2020-10-19 04:08:14 +08:00
2020-10-27 23:53:35 +08:00
def parameters(self):
2020-12-07 05:47:28 +08:00
return get_parameters(self)
2020-10-27 23:53:35 +08:00
2020-10-19 04:08:14 +08:00
def forward(self, x):
return x.dot(self.l1).relu().dot(self.l2).logsoftmax()
# create a model with a conv layer
class TinyConvNet:
def __init__(self):
2020-10-26 04:48:44 +08:00
# https://keras.io/examples/vision/mnist_convnet/
conv = 3
#inter_chan, out_chan = 32, 64
inter_chan, out_chan = 8, 16 # for speed
self.c1 = Tensor.uniform(inter_chan,1,conv,conv)
self.c2 = Tensor.uniform(out_chan,inter_chan,conv,conv)
self.l1 = Tensor.uniform(out_chan*5*5, 10)
2020-10-27 23:53:35 +08:00
def parameters(self):
2020-12-07 05:47:28 +08:00
return get_parameters(self)
2020-10-27 23:53:35 +08:00
def forward(self, x):
2020-11-08 01:17:57 +08:00
x = x.reshape(shape=(-1, 1, 28, 28)) # hacks
x = x.conv2d(self.c1).relu().max_pool2d()
x = x.conv2d(self.c2).relu().max_pool2d()
x = x.reshape(shape=[x.shape[0], -1])
2020-10-26 04:48:44 +08:00
return x.dot(self.l1).logsoftmax()
2020-10-23 21:11:38 +08:00
class TestMNIST(unittest.TestCase):
2020-11-08 01:17:57 +08:00
2020-10-23 21:33:18 +08:00
def test_conv(self):
2020-10-23 21:11:38 +08:00
np.random.seed(1337)
2020-10-23 17:53:01 +08:00
model = TinyConvNet()
2020-10-27 23:53:35 +08:00
optimizer = optim.Adam(model.parameters(), lr=0.001)
train(model, X_train, Y_train, optimizer, steps=200)
assert evaluate(model, X_test, Y_test) > 0.95
2020-10-23 21:33:18 +08:00
def test_sgd(self):
2020-10-23 21:11:38 +08:00
np.random.seed(1337)
2020-10-23 17:53:01 +08:00
model = TinyBobNet()
2020-10-27 23:53:35 +08:00
optimizer = optim.SGD(model.parameters(), lr=0.001)
train(model, X_train, Y_train, optimizer, steps=1000)
assert evaluate(model, X_test, Y_test) > 0.95
2020-10-23 21:33:18 +08:00
def test_rmsprop(self):
2020-10-23 21:11:38 +08:00
np.random.seed(1337)
2020-10-23 20:46:45 +08:00
model = TinyBobNet()
2020-10-27 23:53:35 +08:00
optimizer = optim.RMSprop(model.parameters(), lr=0.0002)
train(model, X_train, Y_train, optimizer, steps=1000)
assert evaluate(model, X_test, Y_test) > 0.95
2020-10-22 02:21:44 +08:00
if __name__ == '__main__':
unittest.main()