Skip to content
AI.info

Research

Beyond Fertility: Analyzing STRR as a Metric for Multilingual Tokenization Evaluation

Overview Research area: Natural Language Processing — multilingual tokenization and evaluation metrics for large language models. Technical level: Intermediate. The core idea (counting words kept as a

arXiv
2510.09947
Published
2025-10-11
Authors
Mir Tafseer Nayeem, Sawsan Alqahtani, Md Tahmid Rahman Laskar, Tasnim Mohiuddin, M Saiful Bari

AI summary

Overview

Research area: Natural Language Processing — multilingual tokenization and evaluation metrics for large language models.

Technical level: Intermediate. The core idea (counting words kept as a single token) is easy to grasp, but the paper assumes familiarity with tokenizers, subword segmentation, fertility, and vocabulary sizes.

Scope: The paper evaluates six LLM tokenizers across seven languages and two domains, argues that the standard metric (fertility) hides cross-lingual inequities, and proposes the Single Token Retention Rate (STRR) as a complementary, interpretable diagnostic along with a vocabulary-expansion pipeline.

What This Paper Is About

Tokenization is a foundational but under-evaluated step in building LLMs, and the field's standard metric, fertility (average tokens per word), condenses tokenizer behavior into a single compression number that hides where a vocabulary is well or poorly allocated across languages. The authors set out to show these blind spots empirically and to introduce STRR, a simple type-level metric measuring the percentage of words a tokenizer encodes as a single token, as a fairness-sensitive complement to fertility.

Key Contributions

  1. A cross-lingual, cross-domain evaluation of six LLM tokenizers. The authors measure fertility (plus subword entropy and characters-per-token) for GPT-4o, Aya-Expanse-32B, Mistral-Small-24B, Llama-3.1-70B, Qwen2.5-72B, and DeepSeek-V3 across seven languages and two domains (formal and informal).
  2. Introduction of the Single Token Retention Rate (STRR). STRR is defined as the percentage of words in a reference wordlist that a tokenizer encodes as exactly one token. Unlike fertility, entropy, or characters-per-token, it is a type-level rather than token-level diagnostic, computed on a wordlist rather than averaged over corpus output.
  3. A multilingual wordlist resource. The authors build STRR's reference set from 1000MostCommonWords, aligning 1,000 translation pairs per language, and release curated lists of the 1,000 most frequent words in seven major languages.
  4. An actionable four-stage vocabulary expansion pipeline. The pipeline comprises core vocabulary identification, vocabulary injection, corpus pretraining, and multilingual instruction tuning, presented as feasible even in low-resource settings.

Main Findings

  • English is uniformly well served. Fertility for English is strikingly consistent across formal and informal domains for every tokenizer, ranging from 1.22 to 1.27. The authors attribute this to English's dominance in pretraining corpora and its relatively simple morphology.
  • Chinese has the highest fertility. Chinese formal fertility spans 1.82 to 2.40 and informal fertility spans 1.86 to 2.40, which the authors link to its logographic script and absence of explicit word boundaries.
  • Domain differences are minimal. Formal and informal scores differ only slightly across languages and tokenizers, which the authors attribute to large vocabularies (128K–255K).
  • STRR reveals English prioritization. Across all tokenizers, English words in the translation pairs are overwhelmingly retained as single tokens, supporting the hypothesis that tokenizers allocate significant vocabulary space to English representations.
  • Chinese receives strong whole-word support. All evaluated LLMs explicitly integrate Chinese vocabulary into their tokenization strategies, with Qwen2.5-72B and DeepSeek-V3 showing the highest STRR for Chinese.
  • Hindi is the most fragmented. Hindi exhibits the lowest STRR across all evaluated tokenizers, revealing pronounced fragmentation and suboptimal vocabulary allocation.
  • Existing metrics have distinct blind spots. Fertility collapses behavior into an average that masks over-fragmentation; subword entropy summarizes distributional balance but is abstract and hard to localize; characters-per-token highlights script differences but reduces quality to mean token length and ignores whether frequent words stay intact.

Methodology in Plain English

The authors take two complementary measurement approaches. First, they run a conventional corpus-based evaluation: for each of six tokenizers, they tokenize formal text (XL-Sum news) and informal text (MultilingualSentiment) and compute fertility in tokens per word, along with subword entropy and characters per token. Because uniform data availability is required across both domains, this part is restricted to English, French, Spanish, and Chinese.

Second, they build a wordlist-based evaluation for STRR. Using 1000MostCommonWords, they align 1,000 translation pairs per language (for example, English–French), giving 1,000 parallel words in each language of a pair. For every word, they check whether the tokenizer emits exactly one token; STRR is the percentage of words that pass this check. Because each pair contains the same 1,000 meanings in two languages, the gap between two languages' STRR exposes which language's vocabulary the tokenizer favors. This design is what makes STRR interpretable and actionable rather than just an average.

Why This Matters

Impact on research. The paper argues that evaluation centered on compression efficiency cannot guide equitable tokenizer design, and that the link between fertility and downstream LLM performance remains unclear. STRR gives researchers a fairness-sensitive, localizable diagnostic that points to specific languages and words needing vocabulary expansion, rather than reporting a single global number.

Real-world applications:

  • Multilingual LLM deployment. Teams serving users in Hindi or other under-served languages can use STRR to identify where inference costs and fragmentation are likely inflated.
  • Tokenizer design and retraining. The four-stage pipeline (core vocabulary identification, vocabulary injection, corpus pretraining, multilingual instruction tuning) is presented as implementable without large pretraining corpora.
  • Model selection. Organizations choosing among GPT-4o, Aya-Expanse-32B, Mistral-Small-24B, Llama-3.1-70B, Qwen2.5-72B, and DeepSeek-V3 can compare STRR profiles per language pair rather than relying on a single fertility figure.
  • Code-mixed and lingua franca settings. The paper highlights scenarios where English interacts with diverse native languages, a setting fertility alone obscures.

Industry relevance. Tokenization governs training and inference cost and shapes performance disparities across languages. STRR offers a low-cost diagnostic that a practitioner can compute from a short high-frequency wordlist before committing to vocabulary surgery or continued pretraining.

Future Directions

  • Correlating STRR with downstream performance. The paper notes that fertility's link to downstream LLM performance remains unclear; the same question is open for STRR.
  • Extending the wordlist beyond high-frequency vocabulary. The current STRR setup uses 1,000 translation pairs per language, leaving open how the metric behaves on domain-specific or mid-frequency vocabulary.
  • Broadening language and script coverage. Seven languages are considered, but Hindi is the only evaluated language outside Latin-script European languages plus Chinese, so the fragmentation picture for other scripts is not established here.
  • Validating the vocabulary expansion pipeline end to end. The four-stage pipeline is proposed with the promise of reduced fragmentation and faster adaptation; the paper does not report measured downstream gains from applying it.

Target Audience

Researchers and engineers working on tokenizer design, multilingual LLM training, and evaluation methodology; practitioners who deploy multilingual models and need to justify tokenizer or model choices; and NLP fairness researchers concerned with how vocabulary capacity is allocated across languages. Readers seeking a quick, implementable fairness metric and a concrete vocabulary-expansion recipe will benefit most, while those looking for an empirical demonstration that STRR improvements translate into downstream performance gains will find that question left open.

Authors’ abstract

Tokenization is a crucial but under-evaluated step in large language models (LLMs). The standard metric, fertility (the average number of tokens per word), captures compression efficiency but obscures how vocabularies are allocated across languages and domains. We analyze six widely used tokenizers across seven languages and two domains, finding stable fertility for English, high fertility for Chinese, and little domain sensitivity. To address fertility's blind spots, we propose the Single Token Retention Rate (STRR), which measures the proportion of words preserved as single tokens. STRR reveals systematic prioritization of English, strong support for Chinese, and fragmentation in Hindi, offering an interpretable view of cross-lingual fairness. Our results show that STRR complements fertility and provides practical guidance for designing more equitable multilingual tokenizers.

Read the original paper