AI · Flashcard

A developer is told the model processes text as tokens rather than whole words. What is a token most accurately?

  • AA chunk of text such as a word piece or subword, the unit the model reads and generates
  • BExactly one English word, since the model always maps a single word to a single token cleanly
  • CA single character, since the model reads text strictly one letter at a time as it generates
  • DA full sentence, since the model consumes and emits complete sentences as its atomic unit

Why this is the answer

A token is a subword chunk — the unit the model reads and produces. It is not exactly one word (2), not a single character (3), and not a whole sentence (4); tokenization sits between characters and words.

Official docs
Study in Gnoseed →