LGCLNEJul 12, 2016

Recurrent Highway Networks

arXiv:1607.03474v5432 citations
AI Analysis

This addresses the problem of training deep recurrent networks for sequential processing tasks like language modeling, offering a novel architecture that significantly enhances performance.

The paper tackled the difficulty of training recurrent neural networks with deep transition functions by introducing Recurrent Highway Networks, which extend LSTM to allow deeper step-to-step transitions, resulting in improved word-level perplexity from 90.6 to 65.4 on the Penn Treebank and achieving 1.27 bits per character entropy on Wikipedia datasets.

Many sequential processing tasks require complex nonlinear transition functions from one step to the next. However, recurrent neural networks with 'deep' transition functions remain difficult to train, even when using Long Short-Term Memory (LSTM) networks. We introduce a novel theoretical analysis of recurrent networks based on Gersgorin's circle theorem that illuminates several modeling and optimization issues and improves our understanding of the LSTM cell. Based on this analysis we propose Recurrent Highway Networks, which extend the LSTM architecture to allow step-to-step transition depths larger than one. Several language modeling experiments demonstrate that the proposed architecture results in powerful and efficient models. On the Penn Treebank corpus, solely increasing the transition depth from 1 to 10 improves word-level perplexity from 90.6 to 65.4 using the same number of parameters. On the larger Wikipedia datasets for character prediction (text8 and enwik8), RHNs outperform all previous results and achieve an entropy of 1.27 bits per character.

Code Implementations6 repos
Foundations

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

Your Notes