paper-with-me

홈 › Papers

MinGram: A Minimalist Unigram Tokenizer with High Compression and Competitive Morphological Alignment

2026-06-25 · Sander Land arxiv

The Unigram tokenizer uses an elegant representation which makes it straightforward to edit vocabularies, but its training is comparatively heavy and complex. We introduce MinGram (Minimalist Unigram), which keeps the token-list representation but simplifies training using a BPE-derived seed vocabulary, Hard EM on a minimum-token path, and a single flat score-pruning step. This removes the suffix array, the forward-backward pass, and the iterative prune loop, leaving a procedure that requires little beyond tokenizer inference itself. By making token count the primary objective and using a Unigram score only as a tiebreak, MinGram keeps the compression of pure token-count methods while retaining much of the morphological alignment and downstream quality of probabilistic ones. Across six languages, MinGram compresses better than both BPE and standard Unigram, and a compression-oriented variant matches the strongest token-count compressors while retaining substantially higher morphological alignment. In controlled downstream language-model training, Unigram-family tokenizers, with MinGram among the best, consistently beat BPE in bits-per-byte.

📄 PDF Abstract BibTeX arXiv:2606.27019

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

Rethinking Tokenization for Rich Morphology: The Dominance of Unigram over BPE and Morphological Alignment

2025-08-11 · Saketh Reddy Vemula, Sandipan Dandapat, Dipti Misra Sharma, Parameswari Krishnamurthy arxiv

The relationship between tokenizer algorithm (e.g., Byte-Pair Encoding (BPE), Unigram), morphological alignment, tokenization quality (e.g., compression efficiency), and downstream performance remains largely unclear, pa…

Text Classification

Conditional Unigram Tokenization with Parallel Data

2025-07-10 · Gianluca Vico, Jindřinch Libovický arxiv

We introduce conditional unigram tokenization, a novel approach that extends unigram tokenization by conditioning target token probabilities on source-language tokens from parallel data. Given a fixed source tokenizer, o…

Machine Translation

Morphologically-Informed Tokenizers for Languages with Non-Concatenative Morphology: A case study of Yoloxóchtil Mixtec ASR

2025-12-05 · Chris Crawford arxiv

This paper investigates the impact of using morphologically-informed tokenizers to aid and streamline the interlinear gloss annotation of an audio corpus of Yoloxóchitl Mixtec (YM) using a combination of ASR and text-bas…

AraToken: Optimizing Arabic Tokenization with Normalization Pipeline and Language Extension for Qwen3

2025-12-20 · Mark Kashirskiy, Artiom Lipinski, Ilya Makarov arxiv

Tokenization is a critical preprocessing step for large language models (LLMs), directly impacting training efficiency and downstream performance. General-purpose tokenizers trained predominantly on English and Latin-scr…

Lost in Space Marking

2022-08-02 · Cassandra L. Jacobs, Yuval Pinter

We look at a decision taken early in training a subword tokenizer, namely whether it should be the word-initial token that carries a special mark, or the word-final one. Based on surface-level considerations of efficienc…