Small neural network library in pure Python and numpy.
Go to file
2020-11-14 20:45:38 +00:00
.gitignore Add include/ to .gitignore 2020-11-14 20:45:38 +00:00
nn.py Add exp function 2020-11-14 20:44:55 +00:00
README.md uwu it actually works 2020-11-14 19:27:42 +00:00

PyGrad

Neural network library written in Python completely from scratch, using only numpy.

Usage

import nn

a = nn.Tensor(1), b = nn.Tensor(2)
c = a.mul(b)
c.backward()

print(a.grad, b.grad) # should output (2, 1)

References

Copying

This is free and unencumbered software released into the public domain.