Transformers, ELI5 · Part 6 / 10

Turning a vector back into words

One last matrix multiply scores every word in the vocabulary — the Chapter 2 dot product, run against the whole dictionary at once.

After the last block, the model holds one vector — the final word’s — call it h. Still just numbers. Now turn it into a vote over words.

Our tiny dictionary

Sentence so far: “the cat sat”. Real models pick from a of tens to hundreds of thousands of tokens; we’ll pretend the dictionary is just six — all ways to finish the sentence:

on · down · there · still · up · quietly

Score each, pick the best. The only input is h.

One dot product per word

From Chapter 2: score a word by dotting h with that word’s arrow. Do it for every word at once — multiply h by the matrix Wᵤ (each column is one word). Out come : one raw score per word.

Click a word's score to see the dot product behind it.

Try it: the bottom row is the six scores. Click one — it lights up h and that word’s column and writes out the dot product. Bigger = the model likes that word more.

see this in PyTorch

Multiply the final vector by the (transposed) embedding table to get one score per word — here we reuse the input table (weight tying); some models learn a separate one.

import torch

# h: the final vector for the LAST token        # h: (d_model,)
# E.weight: the embedding table, shape (vocab, d_model)
# here we TIE weights (reuse the input table); many large models learn a separate output table instead
logits = h @ E.weight.T      # (d_model,) @ (d_model, vocab) -> (vocab,)
# one raw score per word in the vocabulary; biggest = top guess
next_word_id = logits.argmax()

: word → vector, going in. Unembedding: vector → words, coming out.

Go deeper: it's the same dictionary, flipped

The matrix that scores words here is just the Chapter-2 embedding table, transposed — the model keeps one word-list for both reading and guessing. That’s .

Watch the embedding table become the unembedding — same word, both ends.

Raw scores aren’t probabilities yet. Last step, next.

Sources · 4