2020-10-19 01:16:01 +08:00
|
|
|
#!/usr/bin/env python
|
2020-10-22 00:12:19 +08:00
|
|
|
import os
|
2020-10-22 00:30:08 +08:00
|
|
|
import unittest
|
2020-10-19 01:16:01 +08:00
|
|
|
import numpy as np
|
2021-01-01 22:19:03 +08:00
|
|
|
from tinygrad.tensor import Tensor
|
2020-10-23 20:46:45 +08:00
|
|
|
import tinygrad.optim as optim
|
2020-12-14 12:45:55 +08:00
|
|
|
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-11-11 07:37:39 +08:00
|
|
|
|
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-12-09 18:25:27 +08:00
|
|
|
|
2020-10-19 04:08:14 +08:00
|
|
|
def __init__(self):
|
2020-12-07 05:44:31 +08:00
|
|
|
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()
|
|
|
|
|
2020-10-22 00:12:19 +08:00
|
|
|
# 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
|
2020-12-07 05:44:31 +08:00
|
|
|
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-22 00:12:19 +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-22 00:12:19 +08:00
|
|
|
def forward(self, x):
|
2020-11-08 01:17:57 +08:00
|
|
|
x = x.reshape(shape=(-1, 1, 28, 28)) # hacks
|
2020-10-26 08:16:47 +08:00
|
|
|
x = x.conv2d(self.c1).relu().max_pool2d()
|
|
|
|
x = x.conv2d(self.c2).relu().max_pool2d()
|
2020-10-29 23:13:05 +08:00
|
|
|
x = x.reshape(shape=[x.shape[0], -1])
|
2020-10-26 04:48:44 +08:00
|
|
|
return x.dot(self.l1).logsoftmax()
|
2020-10-22 00:12:19 +08:00
|
|
|
|
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)
|
2021-01-01 22:19:03 +08:00
|
|
|
train(model, X_train, Y_train, optimizer, steps=200)
|
|
|
|
assert evaluate(model, X_test, Y_test) > 0.95
|
2020-11-11 23:58:43 +08:00
|
|
|
|
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)
|
2021-01-01 22:19:03 +08:00
|
|
|
train(model, X_train, Y_train, optimizer, steps=1000)
|
|
|
|
assert evaluate(model, X_test, Y_test) > 0.95
|
2020-11-17 07:07:49 +08:00
|
|
|
|
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)
|
2021-01-01 22:19:03 +08:00
|
|
|
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
|
|
|
|
2020-10-22 00:30:08 +08:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|