Zenaique
Topics
Practice
Browse
Reference
Challenges
Pricing
Search…
⌘K
Topics
/
Tokenization
/
Bpe
Bpe
Subtopic
32 questions
Questions tagged with Bpe — part of Tokenization.
Format
Difficulty
Role
Experience
Companies
Sort
Newest
Quality
Difficulty ↑
Difficulty ↓
Questions
Two providers both advertise $0.50 per million output tokens, why is that comparison still dishonest?
Short Answer
Medium
·
Qual 4.0
Bytes, characters, tokens: which one gets billed and how do they relate?
Flashcard
Easy
·
Qual 4.0
BPE learned 50,000 merge rules during training. What is a merge rule, and where does it live at inference?
Flashcard
Easy
·
Qual 4.0
Your teammate mentions BPE at a code review. What are they talking about?
Flashcard
Easy
·
Qual 4.0
You are fine-tuning on Python code only. Should you reuse the base tokenizer, train a new one, or extend the vocab?
Multiple Choice
Medium
·
Qual 4.0
BPE and WordPiece both merge subwords. What is the one thing they disagree on?
Multiple Choice
Easy
·
Qual 4.0
BPE grows the vocabulary by adding merges. Unigram does the opposite. Explain the difference.
Flashcard
Easy
·
Qual 4.0
How does WordPiece decide which pair to merge, compared to BPE?
Multiple Choice
Medium
·
Qual 4.0
How would you train a custom tokenizer for a genomics LLM on DNA sequences?
Short Answer
Hard
·
Qual 4.0
Explain the Unigram LM tokenization algorithm and how its training differs fundamentally from BPE. What does stochastic tokenization enable?
Short Answer
Hard
·
Qual 4.0
Google
What primarily causes the 'token tax' for low-resource languages in BPE tokenizers?
Multiple Choice
Medium
·
Qual 4.0
Explain why word-level and character-level tokenization both fail for modern LLMs, and how subword tokenization resolves each failure mode.
Short Answer
Medium
·
Qual 4.0
Why do modern LLMs use subword tokenization instead of word-level or character-level approaches?
Multiple Choice
Easy
·
Qual 4.0
Which tokenizer can learn merges that span whitespace boundaries by design?
Multiple Choice
Medium
·
Qual 4.0
Google
What is the primary purpose of regex-based pre-tokenization in cl100k_base, and what constraint does it impose on BPE?
Multiple Choice
Medium
·
Qual 4.0
Spot the error: 'BPE tokenizers can produce [UNK] when they encounter rare words'
Spot the Error
Medium
·
Qual 4.0
Why do LLMs frequently fail at arithmetic involving multi-digit numbers? Trace the failure to tokenization.
Short Answer
Medium
·
Qual 4.0
Predict how cl100k_base tokenizes '1024', '2048', and '100000', and explain how inconsistent splitting causes LLM arithmetic failures.
Predict Output
Hard
·
Qual 4.0
Approximately what fraction of BPE vocabulary tokens does LiteToken identify as 'merge residues'?
Multiple Choice
Medium
·
Qual 4.0
What are BPE merge residues (LiteToken) and what do they imply for vocabulary efficiency?
Flashcard
Hard
·
Qual 4.0
Spot the tokenization boundary bug in this manual prompt-building code.
Spot the Error
Hard
·
Qual 4.0
Predict whether tokenizer.encode('world') and tokenizer.encode(' world') produce the same token IDs in tiktoken.
Predict Output
Medium
·
Qual 4.0
What most inflates token count for European languages compared to English in a BPE tokenizer trained on English-dominant data?
Multiple Choice
Medium
·
Qual 4.0
Predict the token count difference between 'def fibonacci(n):' and 'def f(n):' in cl100k_base.
Predict Output
Hard
·
Qual 4.0
Why does a 4-space Python indentation block often tokenize to a single token in cl100k_base?
Multiple Choice
Medium
·
Qual 4.0
Showing 1–25 of 32
← Prev
Next →