CLMar 23, 2017

Sequential Recurrent Neural Networks for Language Modeling

arXiv:1703.08068v16 citations
AI Analysis

This work addresses language modeling for natural language processing, offering an incremental improvement by combining existing network types.

The paper tackled the problem of language modeling by bridging feedforward and recurrent neural networks, resulting in a significant reduction in perplexity on the Penn Treebank and Large Text Compression Benchmark corpora compared to state-of-the-art methods.

Feedforward Neural Network (FNN)-based language models estimate the probability of the next word based on the history of the last N words, whereas Recurrent Neural Networks (RNN) perform the same task based only on the last word and some context information that cycles in the network. This paper presents a novel approach, which bridges the gap between these two categories of networks. In particular, we propose an architecture which takes advantage of the explicit, sequential enumeration of the word history in FNN structure while enhancing each word representation at the projection layer through recurrent context information that evolves in the network. The context integration is performed using an additional word-dependent weight matrix that is also learned during the training. Extensive experiments conducted on the Penn Treebank (PTB) and the Large Text Compression Benchmark (LTCB) corpus showed a significant reduction of the perplexity when compared to state-of-the-art feedforward as well as recurrent neural network architectures.

Foundations

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

Your Notes