concept
active
concept:next-token-prediction

Next Token Prediction

The training objective of LLMs: predicting the most likely next token given context; formally P(w_{n+1}|w_1...w_n)

Neighborhood — ranked by edge-count

Concepts (1)

concept

Related by similarity (8)

cosine ≥ 0.65 · no typed edge

Entities in the same semantic neighborhood but without a typed relation to this one — candidates for new edges or unrecognized duplicates.

  • Training objective used for all neural network models in the paper; cross-entropy loss over predicted token sequences.
  • The core mechanism of LLMs: predicting the next token based on previous context.
  • Tokenconcept0.760
    Basic unit of LLM input/output: words, parts of words, punctuation marks, emojis
  • An attention head that primarily attends to the immediately preceding token; key building block for induction heads via K-composition
  • An attention algorithm recovered by VPD where the model attends to the immediately preceding token.
  • Feature that fires on a specific token only within a specific surrounding context (e.g., 'the' in physics vs 'the' in mathematics)
  • The functional role of a specific VPD subcomponent in predicting emoticon/emoji continuations after punctuation.
  • Token embeddingsconcept0.715
    Vector representations of individual tokens from genomic foundation models; the raw inputs to sequence pooling methods.