LGCLFeb 21, 2023

Hyena Hierarchy: Towards Larger Convolutional Language Models

arXiv:2302.10866v3508 citationsh-index: 94
Originality Highly original
AI Analysis

This addresses the scalability problem for large language models by enabling efficient processing of long contexts, representing a significant advance rather than an incremental improvement.

The paper tackles the quadratic cost limitation of attention in Transformers by proposing Hyena, a subquadratic drop-in replacement using long convolutions and gating, which matches Transformer quality with a 20% reduction in training compute and achieves up to 100x faster inference at long sequences.

Recent advances in deep learning have relied heavily on the use of large Transformers due to their ability to learn at scale. However, the core building block of Transformers, the attention operator, exhibits quadratic cost in sequence length, limiting the amount of context accessible. Existing subquadratic methods based on low-rank and sparse approximations need to be combined with dense attention layers to match Transformers, indicating a gap in capability. In this work, we propose Hyena, a subquadratic drop-in replacement for attention constructed by interleaving implicitly parametrized long convolutions and data-controlled gating. In recall and reasoning tasks on sequences of thousands to hundreds of thousands of tokens, Hyena improves accuracy by more than 50 points over operators relying on state-spaces and other implicit and explicit methods, matching attention-based models. We set a new state-of-the-art for dense-attention-free architectures on language modeling in standard datasets (WikiText103 and The Pile), reaching Transformer quality with a 20% reduction in training compute required at sequence length 2K. Hyena operators are twice as fast as highly optimized attention at sequence length 8K, and 100x faster at sequence length 64K.

Code Implementations7 repos

Data from Papers with Code (CC-BY-SA-4.0)

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes