paper-with-me

홈 › Papers

Quasi-Recurrent Neural Networks

2016-11-05 · James Bradbury, Stephen Merity, Caiming Xiong, Richard Socher

Recurrent neural networks are a powerful tool for modeling sequential data, but the dependence of each timestep's computation on the previous timestep's output limits parallelism and makes RNNs unwieldy for very long sequences. We introduce quasi-recurrent neural networks (QRNNs), an approach to neural sequence modeling that alternates convolutional layers, which apply in parallel across timesteps, and a minimalist recurrent pooling function that applies in parallel across channels. Despite lacking trainable recurrent layers, stacked QRNNs have better predictive accuracy than stacked LSTMs of the same hidden size. Due to their increased parallelism, they are up to 16 times faster at train and test time. Experiments on language modeling, sentiment classification, and character-level neural machine translation demonstrate these advantages and underline the viability of QRNNs as a basic building block for a variety of sequence tasks.

📄 PDF Abstract BibTeX arXiv:1611.01576

Code (7)

JonathanRaiman/tensorflow_qrnn tf
Kyubyong/quasi-rnn tf
bzhangGo/lrn tf
francescodisalvo05/66DaysOfData pytorch
montallen/qrnn-rna-localization pytorch
salesforce/pytorch-qrnn pytorch
zhou059/w266-project

Tasks

Language ModelingLanguage ModellingMachine TranslationSentiment AnalysisSentiment ClassificationSetting-1/4Translation

Methods 이 논문이 사용한 방법론

Masked Convolution A Masked Convolution is a type of convolution which masks certain pixels so that the model can only predict based on pixels…
Adam 설명 없음
Zoneout Zoneout is a method for regularizing RNNs. At each timestep, zoneout stochastically forces some…
SGD Stochastic Gradient Descent is an iterative optimization technique that uses minibatches of data to form an expectation of the gradient, rather than the full gradient using…
GloVe GloVe Embeddings are a type of word embedding that encode the co-occurrence probability ratio between two words as vector differences. GloVe uses a weighted least squares…
RMSProp RMSProp is an unpublished adaptive learning rate optimizer proposed by Geoff Hinton. The motivation…
Weight Decay 설명 없음
Dropout Dropout is a regularization technique for neural networks that drops a unit (along with connections) at training time with a specified probability $p$ (a common value is…

Similar Papers 제목 키워드 기반

3D Quasi-Recurrent Neural Network for Hyperspectral Image Denoising

2020-03-10 · Kaixuan Wei, Ying Fu, Hua Huang

In this paper, we propose an alternating directional 3D quasi-recurrent neural network for hyperspectral image (HSI) denoising, which can effectively embed the domain knowledge -- structural spatio-spectral correlation a…

DenoisingHyperspectral Image DenoisingImage Denoising

Dual Rectified Linear Units (DReLUs): A Replacement for Tanh Activation Functions in Quasi-Recurrent Neural Networks

2017-07-25 · Fréderic Godin, Jonas Degrave, Joni Dambre, Wesley De Neve

In this paper, we introduce a novel type of Rectified Linear Unit (ReLU), called a Dual Rectified Linear Unit (DReLU). A DReLU, which comes with an unbounded positive and negative image, can be used as a drop-in replacem…

Language ModelingLanguage ModellingSentiment AnalysisSentiment Classification

(Quasi)Periodicity Quantification in Video Data, Using Topology

2017-04-26 · Christopher J. Tralie, Jose A. Perea

This work introduces a novel framework for quantifying the presence and strength of recurrent dynamics in video data. Specifically, we provide continuous measures of periodicity (perfect repetition) and quasiperiodicity …

Object TrackingTime SeriesTime Series Analysis

Multi-Scale Quasi-RNN for Next Item Recommendation

2019-02-26 · Chaoyue He, Yong liu, Qingyu Guo, Chunyan Miao

How to better utilize sequential information has been extensively studied in the setting of recommender systems. To this end, architectural inductive biases such as Markov-Chains, Recurrent models, Convolutional networks…

Recommendation Systems

Can recurrent neural networks warp time?

2018-03-23 · ICLR 2018 1 · Corentin Tallec, Yann Ollivier

Successful recurrent models such as long short-term memories (LSTMs) and gated recurrent units (GRUs) use ad hoc gating mechanisms. Empirically these models have been found to improve the learning of medium to long term …