Hacker News new | ask | show | jobs
by 13point5 165 days ago
Right now it's just a tensor manipulation lib but will be adding an autograd engine soon. It's been fun learning about strides and doing matmuls by hand and then coding it without numpy.
1 comments

Thanks for sharing! I used to teach students to build ML algorithms from scratch (everything from Markov chains to multilayer perceptrons and convolution neural networks) - I rewrote some of my notes in TypeScript here:

1. https://github.com/keshavsaharia/numbers/blob/dev/lib/nn/neu...

2. https://github.com/keshavsaharia/numbers/blob/dev/lib/cnn/cn... (still working on the visualization)

Hope you find these useful in your own learning journey!

Thank you!