Eryk Halicki Devlog Art

nanoGPT

Building and training a GPT-style transformer from scratch in PyTorch.

allZimananoGPTMisc
2025-12-01nanoGPTSmaller model experimentTrain a smaller model with same dataset to see if overfitting is reduced What I did: Trained a smaller (5M param) model on the 200M word wikipedia dataset Learned a bit more about…2025-11-28nanoGPTLarger model trainingTrain larger model on larger dataset for longer, trying to acheive more coherent output What I did: Updated wikipedia scraper algorithm to use priority queue instead of greedy sear…2025-11-26nanoGPTGPT training — first coherent sentences!Debug model output and train semi coherent model What I did: Debugged model training loop implemented automated, dockerized training setup Trained first coherent model on Vast.ai S…2025-11-25nanoGPTGPT architectureBuild and test GPT architecture (not training yet) What I did: Finished attention head design finished implemeing full GPT architecture Implemented basic tokenizer and model infere…2025-11-24nanoGPTStarting the transformer implementationBegin implementing transformer paper + gpt1 in pytorch What I did: Revisted attention is all you need learned about layer normalization implemented attention head from scratch in p…