Why may a short Chinese phrase and a short English word have unrelated token counts?
Show answer & explanation
Answer: Token chunks differ by language
Only spaces decide it — Spaces matter, but they are only part of the story. Tokenizers learn chunks from training text, so Chinese characters, phrases, punctuation, and English subwords can be grouped by different statistical habits. Space is a visible clue, not the whole mechanism.
Token chunks differ by language ✓ — Token chunks are learned from text, and languages distribute characters and word boundaries differently. A tokenizer may treat a common Chinese phrase as one chunk while splitting a rare English word, or do the reverse in another encoding. This is why token budgets are language-dependent rather than just length-dependent.
Characters equal tokens — A character is not guaranteed to equal one token. Some phrases become compact learned chunks, while some rare words or symbols split into smaller pieces. The unit the model sees is learned from text statistics, not copied from a writing system's visible characters.
More Technology questions
- Why can Cloudflare's lava-lamp camera feed improve encryption even though the cryptographic software that consumes it is deterministic?
- If an attacker learns a pseudorandom generator's seed and algorithm after watching several outputs, why can the later outputs become reconstructable?
- If a phone game shuffle and a physical noise source both look messy, what makes only one useful for security against someone who knows the code?
- At parking-lot speed, why do quiet EVs need alert sounds before tire noise helps?
- Why does the Ferrari 296 cabin sound duct take sound before exhaust treatment?
- Why do sound engineers tune engine orders instead of just making a Ferrari-like exhaust louder?
