The paper shows word2vec's learned features are exactly the top eigenvectors of a specific target matrix built purely from word co-occurrence and unigram probabilities, so training is equivalent to running PCA on that matrix, computable a priori from corpus statistics alone.
From near-zero initialization, word2vec learns in discrete steps: each step increments the embeddingA list of numbers representing a piece of text's meaning, so that similar meanings end up numerically close and can be searched.Full definition → matrix's effective rank by one concept; on Wikipedia the first eigenvectors track celebrity biographies, then government administration, then geography.
The theory needs no data-distribution assumption, only four mild approximations; despite them, the resulting model scores 66% on a standard analogy benchmarkA standard public test set for comparing AI models — the shared scoreboards behind every "model X beats model Y" claim.Full definition → versus 68% for real word2vec and only 51% for classical PPMI.
Applying the theory to gendered/temporal concepts, the authors find the representation's geometry follows a spiked random matrix model: semantic signal dominates early in training, but noise can dominate later, degrading the model's ability to resolve that linear concept.
Terms in this piece · Glossary
embedding — A list of numbers representing a piece of text's meaning, so that similar meanings end up numerically close and can be searched.
grounding — Tying a model's answers to checkable sources — retrieved documents, live data, tool results — instead of letting it answer from memory alone.
benchmark — A standard public test set for comparing AI models — the shared scoreboards behind every "model X beats model Y" claim.
Why it matters
It gives a rigorous, predictive account of how embedding models actually learn structure, useful groundingTying a model's answers to checkable sources — retrieved documents, live data, tool results — instead of letting it answer from memory alone.Full definition → for anyone reasoning about representation learning in modern LLMs.