WKWahid Khaninwahidk.hashnode.dev·Jan 7 · 13 min readTransformers from scratchWe will go through the paper: Attention is All You Need and build out a transformer model from scratch. I will try to explain everything in a bottom-up approach, moving from raw text to complete architectural blocks. When I train this transformer mod...00
WKWahid Khaninwahidk.hashnode.dev·Dec 9, 2025 · 7 min readGhosts in the Mandelbrot Set$$z_n = z_{n-1}^2 + c$$This one simple equation is responsible for rendering some very interesting visuals. What is this equation really? One way to think about the equation is as a complex number generator. You pick an initial seed point c and then ...00