paper-with-me

홈 › Papers

A Triadic Suffix Tokenization Scheme for Numerical Reasoning

2026-04-13 · Olga Chetverina arxiv

Standard subword tokenization methods fragment numbers inconsistently, causing large language models (LLMs) to lose positional and decimal structure - a primary driver of errors in arithmetic and scientific reasoning. We introduce Triadic Suffix Tokenization (TST), a deterministic scheme that partitions digits into three-digit triads and annotates each triad with an explicit magnitude marker. Critically, the scheme defines a fixed, one-to-one mapping between suffixes and orders of magnitude for the integer part (thousands, millions, billions, etc.) and a parallel system of replicated markers for fractional depth (tenths, thousandths, millionths, etc.). Unlike approaches that rely on positional inference, this method provides a consistent gradient signal, which should ensure stable convergence. Two implementation variants are proposed: (1) a vocabulary-based approach that adds at most 10,000 fixed tokens to an existing vocabulary, covering 33 orders of magnitude ($10^{-15}$ to $10^{18}$); and (2) a suffix-marker approach that uses a small set of special tokens to denote magnitude dynamically. Both variants preserve exact digits while making order-of-magnitude relationships transparent at the token level. While we focus on 3-digit groups (Triadic), the framework is inherently scalable to any group size for precise vocabulary optimization. Furthermore, it allows for linear vocabulary expansion to accommodate arbitrary precision and range. TST is architecture-agnostic and can be integrated as a drop-in preprocessing step. Experimental validation is deferred to future work.

📄 PDF Abstract BibTeX arXiv:2604.11582

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

Tokenization counts: the impact of tokenization on arithmetic in frontier LLMs

2024-02-22 · Aaditya K. Singh, DJ Strouse

Tokenization, the division of input text into input tokens, is an often overlooked aspect of the large language model (LLM) pipeline and could be the source of useful or harmful inductive biases. Historically, LLMs have …

Inductive BiasLanguage ModellingLarge Language Model

Comparative analysis of subword tokenization approaches for Indian languages

2025-05-22 · Sudhansu Bala Das, Samujjal Choudhury, Tapas Kumar Mishra, Bidyut Kr. Patra

Tokenization is the act of breaking down text into smaller parts, or tokens, that are easier for machines to process. This is a key phase in machine translation (MT) models. Subword tokenization enhances this process by …

Machine TranslationTranslation

Super Suffixes: Bypassing Text Generation Alignment and Guard Models Simultaneously

2025-12-12 · Andrew Adiletta, Kathryn Adiletta, Kemal Derya, Berk Sunar arxiv

The rapid deployment of Large Language Models (LLMs) has created an urgent need for enhanced security and privacy measures in Machine Learning (ML). LLMs are increasingly being used to process untrusted text inputs and e…

Code GenerationText Generation

Impact of Tokenization on Language Models: An Analysis for Turkish

2021-11-16 · ACL ARR November 2021 11 · Anonymous

Tokenization is an important text preprocessing step to prepare input tokens for language models. WordPiece and BPE are de-facto methods employed by large language models, such as BERT and GPT. However, the impact of tok…

EFIM: Efficient Serving of LLMs for Infilling Tasks with Improved KV Cache Reuse

2025-05-28 · Tianyu Guo, Hande Dong, Yichong Leng, Feng Liu 외

Large language models (LLMs) are often used for infilling tasks, which involve predicting or generating missing information in a given text. These tasks typically require multiple interactions with similar context. To re…