Longer term memory

Rotational Unit of Memory (RUM) is a drop-in replacement for RNN that has better long-term memory and outperforms LSTM, GRU and RNN on text summarization.

Abstract:
Stacking long short-term memory (LSTM) cells or gated recurrent units (GRUs) as part of a recurrent neural network (RNN) has become a standard approach to solving a number of tasks ranging from language modeling to text summarization. Although LSTMs and GRUs were designed to model long-range dependencies more accurately than conventional RNNs, they nevertheless have problems copying or recalling information from the long distant past. Here, we derive a phase-coded representation of the memory state, Rotational Unit of Memory (RUM), that unifies the concepts of unitary learning and associative memory. We show experimentally that RNNs based on RUMs can solve basic sequential tasks such as memory copying and memory recall much better than LSTMs/GRUs.We further demonstrate that by replacing LSTM/GRU with RUM units we can apply neural networks to real-world problems such as language modeling and text summarization, yielding results comparable to the state of the art"

Original paper:
https://www.mitpressjournals.org/doi/pdf/10.1162/tacl_a_00258

Website with links to code and press release article:
http://super-ms.mit.edu/rum.html

4 Likes