What does HackerNews think of micrograd?
A tiny scalar-valued autograd engine and a neural net library on top of it with PyTorch-like API
[1] https://www.youtube.com/watch?v=VMj-3S1tku0 [2] https://github.com/karpathy/micrograd
https://youtu.be/VMj-3S1tku0?si=wuKhELwOwoYbzpt7
Repo:
1. There are a good subset of jobs across multiple industries that are simply "decision tree lookup" operations. These types of job will most certainly be replaced. For example, I worked for an aerospace company, we hired a consultant for advising on a manufacturing process. He basically looked at what we are trying to make, and advised on the tooling, process, e.t.c. This is the type of job that can be easily done by a future version ChatGPT that is sufficiently trained on both text and mathematical contexts. Software jobs often fall into above category, replicating common patterns that developers have learned. ChatGPT right now is even smart enough to take an input json and output json and write code to transform one into the other.
2. The actual "compute" operations jobs (like making software that requires figuring out a new pattern of transforming data or interfacing with a new piece of hardware like a 3D display) won't be replaced, but the skill will shift to a lot more computer science centric in being able to either a) additive train generic models on specific tasks, or b) use state of the art AI assisted tools effectively.
3. Overall, quality of life is going to improve, as it will get a lot cheaper to do things.
TLDR; if are a software dev and you haven't already, get super familiar with ML concepts, Pytorch, etc.
https://github.com/karpathy/micrograd is a very good primer to start with once you understand the basic concepts.
https://windowsontheory.org/2020/11/03/yet-another-backpropa...
On the same topic, see also:
- Andrej Karpathy's elegant micrograd library: https://github.com/karpathy/micrograd
- This tiny neural networks API inspired by it: https://github.com/bpesquet/pyfit