Building intuition about LLM parameter counts

gpjt1 pts0 comments

Building intuition about LLM parameter counts :: Giles' blog

el.dataset.currentDropdown = '')<br>}">

Giles' blog

Writing the post that I wished I'd found when I started learning whatever it was...

About

Contact

Archives

Categories

Blogroll

July 2026 (3)

June 2026 (7)

May 2026 (2)

April 2026 (11)

March 2026 (3)

February 2026 (4)

January 2026 (4)

December 2025 (1)

November 2025 (3)

October 2025 (9)

September 2025 (3)

August 2025 (5)

July 2025 (1)

June 2025 (2)

May 2025 (3)

April 2025 (2)

March 2025 (7)

February 2025 (10)

January 2025 (6)

December 2024 (7)

September 2024 (1)

August 2024 (2)

July 2024 (2)

May 2024 (2)

April 2024 (2)

February 2024 (2)

April 2023 (1)

March 2023 (2)

September 2022 (1)

February 2022 (1)

November 2021 (1)

March 2021 (1)

February 2021 (2)

August 2019 (1)

November 2018 (1)

May 2017 (1)

December 2016 (1)

April 2016 (1)

August 2015 (1)

December 2014 (1)

August 2014 (1)

March 2014 (1)

December 2013 (1)

October 2013 (3)

September 2013 (4)

August 2013 (2)

July 2013 (1)

June 2013 (1)

February 2013 (1)

October 2012 (1)

June 2012 (1)

May 2012 (1)

April 2012 (1)

February 2012 (1)

October 2011 (1)

June 2011 (1)

May 2011 (1)

April 2011 (1)

March 2011 (1)

February 2011 (1)

January 2011 (1)

December 2010 (3)

November 2010 (1)

October 2010 (1)

September 2010 (1)

August 2010 (1)

July 2010 (1)

May 2010 (3)

April 2010 (1)

March 2010 (2)

February 2010 (3)

January 2010 (4)

December 2009 (2)

November 2009 (5)

October 2009 (2)

September 2009 (2)

August 2009 (3)

July 2009 (1)

May 2009 (1)

April 2009 (1)

March 2009 (5)

February 2009 (5)

January 2009 (5)

December 2008 (3)

November 2008 (7)

October 2008 (4)

September 2008 (2)

August 2008 (1)

July 2008 (1)

June 2008 (1)

May 2008 (1)

April 2008 (1)

January 2008 (4)

December 2007 (3)

March 2007 (3)

February 2007 (1)

January 2007 (2)

December 2006 (4)

November 2006 (18)

AI (90)

TIL deep dives (77)

Python (72)

LLM from scratch (48)

Resolver One (34)

PyTorch (21)

TIL (21)

Blogkeeping (18)

PythonAnywhere (17)

Linux (16)

Startups (15)

Gadgets (13)

Hugging Face (13)

NSLU2 offsite backup project (13)

Funny (11)

Musings (11)

Finance (10)

Fine-tuning LLMs (10)

C (9)

Personal (8)

Robotics (8)

Website design (8)

JAX (7)

3D (5)

Quick links (5)

Rants (5)

Cryptography (4)

JavaScript (4)

Music (4)

Oddities (4)

Talks (4)

Dirigible (3)

Eee (3)

Memes (3)

Politics (3)

Django (2)

GPU Computing (2)

LaTeX (2)

MathML (2)

OLPC XO (2)

Retro Language Models (2)

Space (2)

VoIP (2)

Copyright (1)

Golang (1)

Microprojects (1)

poppy the training box (1)

Raspberry Pi (1)

Software development tools (1)

Agile Abstractions

Astral Codex Ten

:: (Bloggable a) => a -> IO ()

David Friedman's Substack

Econ & Energy

Entrepreneurial Geekiness

For some value of "Magic"

Hackaday

kaleidic.ai newsletter

Knowing.NET

Language Log

Millennium Hand

ntoll.org

Obey the Testing Goat!

PK

PythonAnywhere News

Simon Willison's Weblog

Societive

Software Deviser

Some opinions, held with varying degrees of certainty

tartley.com

Building intuition about LLM parameter counts

Posted on 10 July 2026

in

AI

When I was building my GPT-2 implementation in JAX,<br>I started with just token embeddings for the input, and a separate output head (as I was not using<br>weight tying). It wasn't an<br>LLM -- no Transformer blocks, no attention, no feed-forward networks.

I was somewhat surprised when I noticed that even that stripped-down model had 77 million parameters<br>with the "small" settings I was using to train -- specifically, an embedding dimension of 768.<br>However, I realised I shouldn't be -- with a vocab size of 50,257, each of those components is essentially<br>a 768×50,257 matrix, and that is indeed over 38 million numbers.

But the finished LLM at the end of the project was only 163 million parameters -- that meant that the<br>input and output components alone were almost half of it. That felt<br>like a surprisingly large percentage.

I had a similar shock when I was first looking into the feed-forward network,<br>and realised that it had roughly twice as many parameters as the attention layers.

When we learn about the internals of LLMs, a lot of the focus is on the attention<br>mechanism. This makes sense -- it's the hardest part to get your head around. The<br>rest of the setup, at least for simple GPT-2 type models, is fairly standard stuff.

But that means that it is easy to overestimate how much of the total<br>parameter count of the model attention uses up -- especially for smaller models,<br>where the token embeddings and the output head are so large in comparison to<br>the Transformer layers that make up the actual body of the LLM.

OpenAI released GPT 5.6 today, so I decided to take its "Sol" variant for a ride<br>in Codex and asked it to write a visualiser.<br>It shows<br>breakdowns of how the parameters are split between embeddings, attention, the FFNs, and<br>the output head<br>for...

february april december march august july

Related Articles