TL;DR
This paper introduces ELSTM, an enhanced LSTM with adaptive memory decay control, and DBRNN, a bidirectional RNN designed for robustness, demonstrating significant improvements in language tasks over existing models.
Contribution
The paper proposes ELSTM with trainable scaling for better memory retention and DBRNN for robustness, advancing RNN performance in language processing tasks.
Findings
ELSTM achieves up to 30% higher LAS in dependency parsing.
ELSTM and DBRNN outperform state-of-the-art models by nearly 10%.
Extensive experiments validate the effectiveness of the proposed models.
Abstract
In this work, we first analyze the memory behavior in three recurrent neural networks (RNN) cells; namely, the simple RNN (SRN), the long short-term memory (LSTM) and the gated recurrent unit (GRU), where the memory is defined as a function that maps previous elements in a sequence to the current output. Our study shows that all three of them suffer rapid memory decay. Then, to alleviate this effect, we introduce trainable scaling factors that act like an attention mechanism to adjust memory decay adaptively. The new design is called the extended LSTM (ELSTM). Finally, to design a system that is robust to previous erroneous predictions, we propose a dependent bidirectional recurrent neural network (DBRNN). Extensive experiments are conducted on different language tasks to demonstrate the superiority of the proposed ELSTM and DBRNN solutions. The ELTSM has achieved up to 30% increase in…
Peer Reviews
No public reviews on file for this paper yet. If you reviewed it on a platform where reviews are public (OpenReview, ICLR, NeurIPS, ICML), you can paste yours below so the community can read it here.
Code & Models
Videos
No videos yet. Explain this paper in a talk, walkthrough, or lecture? Add one.
Taxonomy
MethodsSigmoid Activation · Tanh Activation · Gated Recurrent Unit · Long Short-Term Memory
