Spaces:
Sleeping
Sleeping
| """A small neural network implemented from scratch in NumPy. | |
| No autograd framework — every forward and backward pass is written by hand, and the | |
| gradients are verified against finite differences in the test suite. Trains a | |
| multilayer perceptron on MNIST to ~97%+ test accuracy. | |
| """ | |
| __version__ = "0.1.0" | |