paper-with-me

Papers

Hierarchical Autoregressive Transformers: Combining Byte- and Word-Level Processing for Robust, Adaptable Language Models

2025-01-17 · Pit Neitemeier, Björn Deiseroth, Constantin Eichenberg, Lukas Balles

Tokenization is a fundamental step in natural language processing, breaking text into units that computational models can process. While learned subword tokenizers have become the de-facto standard, they present challenges such as large vocabularies, limited adaptability to new domains or languages, and sensitivity to spelling errors and variations. To overcome these limitations, we investigate a hierarchical architecture for autoregressive language modelling that combines character-level and word-level processing. It employs a lightweight character-level encoder to convert character sequences into word embeddings, which are then processed by a word-level backbone model and decoded back into characters via a compact character-level decoder. This method retains the sequence compression benefits of word-level tokenization without relying on a rigid, predefined vocabulary. We demonstrate, at scales up to 7 billion parameters, that hierarchical transformers match the downstream task performance of subword-tokenizer-based models while exhibiting significantly greater robustness to input perturbations. Additionally, during continued pretraining on an out-of-domain language, our model trains almost twice as fast, achieves superior performance on the target language, and retains more of its previously learned knowledge. Hierarchical transformers pave the way for NLP systems that are more robust, flexible, and generalizable across languages and domains.

📄 PDF Abstract BibTeX arXiv:2501.10322

Code (0)

등록된 구현이 없습니다.

Tasks

Language ModellingWord Embeddings

Similar Papers 제목 키워드 기반

MambaByte: Token-free Selective State Space Model

2024-01-24 · Junxiong Wang, Tushaar Gangavarapu, Jing Nathan Yan, Alexander M. Rush

Token-free language models learn directly from raw bytes and remove the inductive bias of subword tokenization. Operating on bytes, however, results in significantly longer sequences. In this setting, standard autoregres…

Computational EfficiencyInductive BiasLanguage ModelingLanguage Modelling+2

MEGABYTE: Predicting Million-byte Sequences with Multiscale Transformers

2023-05-12 · NeurIPS 2023 11 · Lili Yu, Dániel Simig, Colin Flaherty, Armen Aghajanyan 외

Autoregressive transformers are spectacular models for short sequences but scale poorly to long sequences such as high-resolution images, podcasts, code, or books. We proposed Megabyte, a multi-scale decoder architecture…

DecoderDensity EstimationLanguage ModelingLanguage Modelling

From Bytes to Ideas: Language Modeling with Autoregressive U-Nets

2025-06-17 · Mathurin Videau, Badr Youbi Idrissi, Alessandro Leite, Marc Schoenauer 외

Tokenization imposes a fixed granularity on the input text, freezing how a language model operates on data and how far in the future it predicts. Byte Pair Encoding (BPE) and similar schemes split text once, build a stat…

Language ModelingLanguage Modelling

A Family of LLMs Liberated from Static Vocabularies

2026-03-16 · Aleph Alpha, :, Adnen Abdessaied, Artur Baranowski 외 arxiv

Tokenization is a central component of natural language processing in current large language models (LLMs), enabling models to convert raw text into processable units. Although learned tokenizers are widely adopted, they…

PixelBytes: Catching Unified Representation for Multimodal Generation

2024-09-16 · Fabien Furfaro

This report presents PixelBytes, an approach for unified multimodal representation learning. Drawing inspiration from sequence models like Image Transformers, PixelCNN, and Mamba-Bytes, we explore integrating text, audio…

Mambamultimodal generationRepresentation LearningState Space Models