From 49ae15a4505536050a2ac408dec2fd6033879954 Mon Sep 17 00:00:00 2001 From: George Hotz Date: Fri, 23 Oct 2020 06:12:04 -0700 Subject: [PATCH] i like that comma --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 64e8b8f762..0e998f126b 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ print(y.grad) # dz/dy ### Neural networks? -It turns out, a decent autograd tensor library is 90% of what you need for neural networks. Add an optimizer (SGD, RMSprop and Adam implemented) from tinygrad.optim, write some boilerplate minibatching code, and you have all you need. +It turns out, a decent autograd tensor library is 90% of what you need for neural networks. Add an optimizer (SGD, RMSprop, and Adam implemented) from tinygrad.optim, write some boilerplate minibatching code, and you have all you need. ### Neural network example (from test/test_mnist.py)