nn-from-scratch / nn /__init__.py
LaelaZ's picture
Upload folder using huggingface_hub
5041f39 verified
raw
history blame contribute delete
307 Bytes
"""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"