Trying to read the microGPT sourcecode.
(https://karpathy.github.io/2026/02/12/microgpt/)
I love the idea of the project, but imho its readability suffers from:
- putting stuff on one line that would be better readable on multiple lines (probably to stay under 200 lines)
- using 2 or 3 character variable names. i.e. wo being weightsOutput, x being any vector etc. (mathematical conventions? Copied from the original GPT2 code?)





