Metadata-Version: 2.4
Name: fygrad
Version: 0.1.0
Summary: A tiny autograd and neural-network toolkit with NumPy/CuPy support.
Author-email: Fasih Hasan Khan <fhk.tcs@gmail.com>
License: MIT License
Keywords: autograd,neural-networks,deep-learning,numpy
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: numpy>=1.23

# fygrad

A tiny autograd and neural-network toolkit with NumPy/CuPy support.

## Install

```bash
pip install fygrad
```

## Quick start

```python
from fygrad import Node

x = Node("x", [[1.0, 2.0], [3.0, 4.0]])
y = F.sum(x * 2)
y.backward()
print(x.grad)
```

## Notes

- GPU support uses CuPy if it is available.
- The API is intentionally minimal.

## License

MIT
