Paper Overview
Field: NLP Authors: Ahmetcan Yavuz, Clara Meister, Tiago Pimentel Published: 2026-09-16 arXiv: 2609.19145
Introduction
Two dominant tokenisation algorithms are used by modern language models: byte-pair encoding (BPE) and UnigramLM. These differ along two orthogonal axes:
- Optimisation objective: compression vs. log-likelihood
- Search procedure: bottom-up merging vs. top-down pruning
- Model size
- Vocabulary sizes
- Domain (English-only vs. multilingual)
- Bits-per-byte: The search procedure, not the optimisation objective, is the dominant factor. In most settings, bottom-up tokenisers consistently achieve lower bits-per-byte.
- BLiMP: No consistent relationship exists between tokeniser design choices and linguistic acceptability performance.
Existing comparisons confound these axes, making it unclear whether observed performance differences stem from *what* is being optimised vs. *how* it is being optimised.
Method: Completing the 2x2 Design Space
The authors introduce two new tokenisation algorithms to decouple the two dimensions:
1. BottomUpLL — a bottom-up, likelihood-based tokeniser 2. TopDownComp — a top-down, compression-based tokeniser
Together with BPE (bottom-up compression) and UnigramLM (top-down likelihood), these complete the full 2x2 design space.
Experiments
Language models were trained with tokenisers produced by each algorithm, varying:
Findings
Conclusion
The work decouples the effects of tokeniser design choices on language modelling performance, offering concrete guidance for more principled tokeniser construction.
--- *Auto-collected on 2026-09-18*