CLNov 23, 2022

Word-Level Representation From Bytes For Language Modeling

arXiv:2211.12677v11 citationsh-index: 25
Originality Incremental advance
AI Analysis

This work addresses efficiency and generalization challenges in language modeling for NLP practitioners, though it is incremental as it builds on prior character-aware methods.

The paper tackles the limitations of sub-word tokenization in language models, such as noise robustness and cross-lingual generalization, by proposing Byte2Word, a token-free model that builds word-level representations directly from bytes and achieves performance on par with BERT while using only 10% of the embedding size.

Modern language models mostly take sub-words as input, a design that balances the trade-off between vocabulary size, number of parameters, and performance. However, sub-word tokenization still has disadvantages like not being robust to noise and difficult to generalize to new languages. Also, the current trend of scaling up models reveals that larger models require larger embeddings but that makes parallelization hard. Previous work on image classification proves splitting raw input into a sequence of chucks is a strong, model-agnostic inductive bias. Based on this observation, we rethink the existing character-aware method that takes character-level inputs but makes word-level sequence modeling and prediction. We overhaul this method by introducing a cross-attention network that builds word-level representation directly from bytes, and a sub-word level prediction based on word-level hidden states to avoid the time and space requirement of word-level prediction. With these two improvements combined, we have a token free model with slim input embeddings for downstream tasks. We name our method Byte2Word and perform evaluations on language modeling and text classification. Experiments show that Byte2Word is on par with the strong sub-word baseline BERT but only takes up 10\% of embedding size. We further test our method on synthetic noise and cross-lingual transfer and find it competitive to baseline methods on both settings.

Foundations

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

Your Notes