Fusion is a machine learning library
You need python, uv, make
git clone https://github.com/plagache/fusion
cd fusion
make setup
make run
Understand machine learning framework and autograd with the micrograd of Andrej Karpathy, and then add the tensor class. A Tensor containing a multidimensional array, in our case based on numpy ndarray.
- [x] dot
- [ ] softmax
- [x] sigmoid
- [x] log
- [x] Relu
- [x] div
- [x] exp
- [ ] pow
- [ ] * itself ^N times