Share your thoughts, 1 month free Claude Pro on usSee more
WorkDL logo mark

Language Models with Transformers

About

The Transformer architecture is superior to RNN-based models in computational efficiency. Recently, GPT and BERT demonstrate the efficacy of Transformer models on various NLP tasks using pre-trained language models on large-scale corpora. Surprisingly, these Transformer architectures are suboptimal for language model itself. Neither self-attention nor the positional encoding in the Transformer is able to efficiently incorporate the word-level sequential context crucial to language modeling. In this paper, we explore effective Transformer architectures for language model, including adding additional LSTM layers to better capture the sequential context while still keeping the computation efficient. We propose Coordinate Architecture Search (CAS) to find an effective architecture through iterative refinement of the model. Experimental results on the PTB, WikiText-2, and WikiText-103 show that CAS achieves perplexities between 20.42 and 34.11 on all problems, i.e. on average an improvement of 12.0 perplexity units compared to state-of-the-art LSTMs. The source code is publicly available.

Chenguang Wang, Mu Li, Alexander J. Smola• 2019

Related benchmarks

TaskDatasetResultRank
Language ModelingWikiText-2 (test)
PPL34.1
1949
Language ModelingWikiText-103 (test)
Perplexity20.42
579
Language ModelingPTB (test)
Perplexity31.34
526
Language ModelingWikiText2 (val)
Perplexity (PPL)37.7
387
Language ModelingWikiText-103 (val)
PPL19.67
214
Language ModelingPTB (val)
Perplexity36.14
99
Showing 6 of 6 rows

Other info

Code

Follow for update