Multi-word Tokenization for Sequence Compression
Leonidas Gee, Leonardo Rigutini, Marco Ernandes, Andrea Zugarini
TL;DR
The paper tackles the high computational cost of large language models by compressing input sequences through a Multi-Word Tokenizer that encodes frequent multi-word expressions as single tokens. It introduces a greedy n-gram selection process to augment the tokenizer vocabulary and applies Fast Vocabulary Transfer to initialize embeddings for new tokens, enabling efficient integration. Across medical, legal, and patent domains, MWT delivers substantial sequence compression and speedups while maintaining or slightly improving performance, and remains effective when combined with DistilBERT and other compression techniques. The work demonstrates a practical path to faster inference in domain-specific settings and invites future work on broader models and generation tasks.
Abstract
Large Language Models have proven highly successful at modelling a variety of tasks. However, this comes at a steep computational cost that hinders wider industrial uptake. In this paper, we present MWT: a Multi-Word Tokenizer that goes beyond word boundaries by representing frequent multi-word expressions as single tokens. MWTs produce a more compact and efficient tokenization that yields two benefits: (1) Increase in performance due to a greater coverage of input data given a fixed sequence length budget; (2) Faster and lighter inference due to the ability to reduce the sequence length with negligible drops in performance. Our results show that MWT is more robust across shorter sequence lengths, thus allowing for major speedups via early sequence truncation.
