John Jay College of Criminal Justice, CUNY
The City College of New York, CUNY
The University of Texas at San Antonio
Tokenization Equity Audit (TEA) Poster LM4UC Workshop IJCAI 2026 Bremen, Germany · 16 August 2026 arXiv:2608.09046 · github.com/HeyAvijitRoy/tea-benchmark

Measuring the Tokenization Premium

A Cost Audit for Underserved Language Communities | TEA Benchmark

Avijit Roy John Jay College of Criminal Justice · CUNY
Proma Roy The City College of New York · CUNY
Hrishitva Patel University of Texas at San Antonio

Peer-reviewed workshop paper · accepted for oral and poster presentation at the Language Models for Underserved Communities (LM4UC) Workshop, IJCAI 2026.

1.56×
Bengali · GPT-4o
56% more tokens than English across the 120-item corpus.
≈4.5×
Bengali · open-weight tokenizers
4.50× Qwen2.5-7B · 4.44× Mistral-7B-v0.1.
82k
English-equivalent context
Inside a nominal 128k-token window for Bengali under GPT-4o.
2.37×
Yoruba · GPT-4o
Highest GPT-4o premium in the corpus despite Latin script.
01 · Problem

Equivalent meaning can enter the model with unequal representation cost.

Multilingual evaluation usually starts with model output. The Tokenization Equity Audit (TEA) moves one step upstream and audits the token sequence produced before inference. Prior work has shown that cross-language tokenization disparities can affect cost, latency, and usable context [1][2].

The layer TEA audits

Text
Tokenizer
Tokens
Model
No model inference is required. TEA computes token counts from tokenizer vocabularies over a controlled parallel corpus. This is one measurable form of what our companion analysis calls structural silence — an infrastructure decision that disadvantages a language before a single parameter is touched [7].

Why this matters for underserved-language educational AI

API systems: token-based billing makes longer encodings more expensive.

Context: nominal windows are measured in tokens, not semantic content.

Local deployment: avoiding an API bill does not remove sequence-length overhead; longer sequences still cost local compute and memory.

Tokenizer design changes what a system can carry, compute, and afford.
Example

One Python error message: 8 tokens in English, 22 in Tamil.

Corpus item T1-10 — “IndexError: list index out of range” — encoded using GPT-4o o200k_base. No model has run yet; every difference below is produced entirely by the encoder vocabulary.

Figure adapted from TEA Figure 1. English requires 8 tokens; Bengali 11; Hindi 11; Tamil 22; Yoruba 19. Yoruba uses Latin script yet still fragments more than Bengali — script family alone does not predict tokenizer fairness.
02 · Benchmark

A custom programming corpus preserves how multilingual technical teaching actually works.

TEA uses beginner Python because technical tutoring naturally mixes native-language explanation with English error names, identifiers, and code — a poor fit for generic parallel prose.

120 parallel items · six languages

English source items were translated into Bengali, Hindi, Arabic, Tamil, and Yoruba. Python identifiers and error names such as TypeError, IndexError, NoneType, and code variables are intentionally retained in English, matching real classroom code-switching.

35 Tier 1 Short technical phrases, error names, diagnostics.
50 Tier 2 One- to three-sentence bug explanations and fixes.
35 Tier 3 Longer tutoring passages, concepts, and small code examples.

Tokenizers and validation scope

Tokenizers audited: GPT-4o o200k_base, Qwen2.5-7B, and Mistral-7B-v0.1. The audit uses tokenizer vocabularies only — no model inference.

Bengali · human validated Hindi · human validated Arabic · exploratory Tamil · exploratory Yoruba · exploratory

Bengali items were reviewed by two Bengali speakers with programming experience; Hindi items by a Hindi-speaking contributor familiar with technical usage. The custom corpus also enables a Bengali code-switching sensitivity check: “clean” items contain at least 75% Bengali-script alphabetic characters.

Metrics

Three quantities carry the whole audit.

Every result on this page is derived from these three definitions.

TFR
tokens(language) ÷ tokens(English)

Token Fertility Ratio — token premium relative to English, computed per item under the same tokenizer.

ECW
nominal window ÷ TFR

Effective Context Window — English-equivalent semantic content that fits inside a fixed nominal token budget.

Cost
price × (TFR − 1) × mean English tokens × requests

Illustrative API cost premium. Dollar values move with provider pricing; the TFR ratio is the durable result.

03 · Results

Every tested non-English language is above English parity under every tokenizer.

Mean Token Fertility Ratio (TFR) across all 120 items. English is fixed at 1.00× under every tokenizer. Click a legend swatch to isolate a tokenizer.

English baseline: 1.00× under every tokenizer — the reference line every bar below is measured against.
Arabic
GPT-4o
1.44×
Qwen2.5-7B
1.70×
Mistral-7B
3.86×
Hindi
GPT-4o
1.72×
Qwen2.5-7B
4.86×
Mistral-7B
5.20×
Bengali
GPT-4o
1.56×
Qwen2.5-7B
4.50×
Mistral-7B
4.44×
Tamil
GPT-4o
2.09×
Qwen2.5-7B
6.55×
Mistral-7B
6.57×
Yoruba
GPT-4o
2.37×
Qwen2.5-7B
3.18×
Mistral-7B
3.33×
Source: TEA Table 1. Mean TFR across the 120-item corpus, scaled to a 7.0× maximum. Higher = more tokens required relative to the English version of the same content.
View full results table (Table 1, mean ± SD)
Token fertility ratio by language and tokenizer across the 120 TEA items.
Language GPT-4o Qwen2.5-7B Mistral-7B
English 1.00 ± 0.00 1.00 ± 0.00 1.00 ± 0.00
Arabic 1.44 ± 0.21 1.70 ± 0.27 3.86 ± 0.54
Hindi 1.72 ± 0.31 4.86 ± 0.91 5.20 ± 0.99
Bengali 1.56 ± 0.41 4.50 ± 1.46 4.44 ± 1.45
Tamil 2.09 ± 0.48 6.55 ± 1.80 6.57 ± 1.82
Yoruba 2.37 ± 0.49 3.18 ± 0.63 3.33 ± 0.67

Tokenizer family matters

Bengali: 1.56× → 4.50× / 4.44×

GPT-4o versus Qwen2.5-7B and Mistral-7B-v0.1. The same language carries very different sequence overhead depending on tokenizer design.

Script family is not enough

Yoruba 2.37× > Bengali 1.56×

Under GPT-4o, Latin-script Yoruba is more expensive than Bengali — evidence for measuring language-level behavior rather than assuming fairness from script alone.

Open-weight trade-off

Tamil exceeds 6.5×

Qwen2.5 and Mistral remove commercial API billing, but their tokenizers carry much longer sequences for several languages in this corpus.

Sensitivity

English code-switching suppresses the Bengali premium rather than inflating it.

Choose a corpus tier to compare all Bengali items with the “clean” Bengali subset (at least 75% Bengali-script alphabetic characters). The clean subset is more expensive in every tier.

All Bengali items (n=120) 1.65×
Includes realistic retained English programming terms.
Clean Bengali subset (n=62) 2.11×
At least 75% Bengali-script alphabetic characters.
Interpretation: retained English identifiers pull the measured Bengali premium down. The aggregate 1.56× GPT-4o result is therefore conservative for more native-script-heavy content.
View full sensitivity table (Table 3)
Bengali TFR sensitivity to technical code-switching under GPT-4o.
Subset Tier 1 Tier 2 Tier 3
All items (n=120) 1.65 ± 0.52 1.55 ± 0.36 1.50 ± 0.36
Clean only (n=62) 2.11 ± 0.57 1.79 ± 0.17 1.79 ± 0.10
04 · Impact

A nominal 128k-token context window does not carry equal semantic capacity across languages.

Select a language. TEA estimates effective English-equivalent content by dividing the nominal context window by mean GPT-4o TFR.

Bengali 81,967 of 128,000

Bengali retains about 64% of the English-equivalent capacity in a nominal 128k window.

64% effective share
81,967 English-equivalent tokens
+$0.07 illustrative premium / 1k requests

Effective context is an operational estimate, not a claim that model architecture changes by language. Cost uses GPT-4o input pricing of $2.50 per million tokens as of May 2026; the token ratios are the durable result.

View full context table (Table 2)
Illustrative GPT-4o context and cost implications. ECW estimates assume a 128k-token nominal window; cost uses $2.50 per million input tokens (May 2026).
Language Premium / 1k calls Effective context
English $0.00 128,000 (100%)
Arabic $0.06 89,148 (70%)
Hindi $0.09 74,461 (58%)
Bengali $0.07 81,967 (64%)
Tamil $0.14 61,121 (48%)
Yoruba $0.18 53,951 (42%)
Resource effect

The premium propagates when multilingual data is built.

A 100,000-token English instructional corpus expands non-uniformly when represented as equivalent multilingual content using GPT-4o TFRs.

English source100kbaseline
Bengali156k+56%
Tamil209k+109%
Yoruba237k+137%

Longer tokenized representations increase storage, transmission, batching, and curation burden before downstream model quality is even considered — a structural barrier to equitable resource development that operates independently of model quality.

Tokenization is a measurable equity layer beneath the model. A vocabulary file and a parallel corpus are enough to expose representation overhead before inference.
05 · Scope

Token efficiency is not answer quality.

TEA is deliberately an infrastructure audit. It does not claim that a lower TFR guarantees a better model response.

Corpus scale

120 items in one technical-education domain — a workshop-scale audit, not a universal tokenizer ranking.

Validation depth

Bengali and Hindi are the human-validated primary cases; Arabic, Tamil, and Yoruba are exploratory.

Sensitivity coverage

The code-switching analysis is currently Bengali-only.

Pricing

Dollar figures are illustrative and provider-dependent. TFR is the stable quantity.

06 · Recommendations

Make the invisible denominator visible.

Four reporting practices the paper proposes — none of which require training a new model.

01
Report tokenizer efficiency by language.

Model cards and multilingual benchmark papers should include language-level tokenization statistics, especially for underserved languages.

02
Evaluate context-equivalent capacity.

Context-window claims should be paired with language-adjusted estimates whenever multilingual deployment is intended.

03
Treat technical domains separately.

Programming education, legal assistance, health guidance, and other terminology-heavy domains should be audited independently, since code-switching and domain vocabulary change tokenization behavior.

04
Account for dataset construction inequity.

Non-uniform token scaling (100k → 156k Bengali → 209k Tamil → 237k Yoruba) increases storage, transmission, and curation cost for underserved languages — a structural barrier that operates independently of model quality.

07 · Sources

Paper, benchmark, and selected literature cited by TEA.

These references are drawn from the paper's bibliography and linked to primary publication or preprint pages where available.

Read the TEA paper

Roy, Roy & Patel (2026), arXiv:2608.09046.

arxiv.org/abs/2608.09046

Reproduce the benchmark

Corpus, token counts, scripts, figures, result tables, and run instructions.

github.com/HeyAvijitRoy/tea-benchmark
[1] Petrov et al. (2023). "Language Model Tokenizers Introduce Unfairness Between Languages." NeurIPS 36. Primary source
[2] Ahia et al. (2023). "Do All Languages Cost the Same? Tokenization in the Era of Commercial Language Models." EMNLP 2023. ACL Anthology
[3] Rust et al. (2021). "How Good is Your Tokenizer? On the Monolingual Performance of Multilingual Language Models." ACL-IJCNLP 2021. ACL Anthology
[4] Thakur et al. (2025). "The Art of Breaking Words: Rethinking Multilingual Tokenizer Design." arXiv
[5] Raihan & Zampieri (2025). "TigerLLM — A Family of Bangla Large Language Models." ACL 2025 Short Papers. ACL Anthology
[6] Raihan, Anastasopoulos & Zampieri (2025). "TigerCoder: A Novel Suite of LLMs for Code Generation in Bangla." arXiv
[7] Roy & Roy (2026). "Structural Silence: When AI Infrastructure Fails Speakers of Underrepresented Languages." SSRN Electronic Journal. SSRN · arXiv:2608.12278 · Interactive poster
Additional sources. The paper also cites Mistral-7B (Jiang et al. 2023), Qwen2.5 technical documentation, and OpenAI tiktoken/pricing documentation. See the full paper for the complete bibliography.
Citation

Cite this work

If you use this work, please cite the paper. Cite the poster separately if you are referencing the LM4UC 2026 presentation itself.

Paper Citation

@article{roy2026tokenizationpremium,
  title   = {Measuring the Tokenization Premium: A Cost Audit for Underserved Language Communities},
  author  = {Roy, Avijit and Roy, Proma and Patel, Hrishitva},
  year    = {2026},
  journal = {arXiv preprint arXiv:2608.09046},
  doi     = {10.48550/arXiv.2608.09046},
  url     = {https://doi.org/10.48550/arXiv.2608.09046},
  note    = {Accepted for oral presentation and poster, Language Models for Underserved Communities (LM4UC) Workshop, IJCAI 2026}
}

Poster Citation

@misc{roy2026tokenizationpremium_poster,
  author  = {Roy, Avijit and Roy, Proma and Patel, Hrishitva},
  title   = {Measuring the Tokenization Premium: A Cost Audit for Underserved Language Communities (Poster)},
  year    = {2026},
  month   = aug,
  doi     = {10.13140/RG.2.2.25750.31049},
  url     = {https://doi.org/10.13140/RG.2.2.25750.31049},
  note    = {Poster presented at the Language Models for Underserved Communities (LM4UC) Workshop, IJCAI 2026}
}
Acknowledgment. This work was supported in part by the Advanced Cyberinfrastructure Coordination Ecosystem: Services & Support (ACCESS) program through Allocation CIS260616, "Dataset Development and Fine-Tuning of Language Models for Low-Resource Bengali Programming Assistance." Portions of dataset processing and benchmark analysis were conducted using ACCESS resources provided through Indiana University Jetstream2.

Interactive poster content is grounded in the TEA paper. Exploratory-language and pricing caveats are preserved from the paper. External links open the corresponding research artifacts or primary publication pages.
Citation copied.