# Language Modeling through Long Term Memory Network

**Authors:** Anupiya Nugaliyadde, Kok Wai Wong, Ferdous Sohel, Hong Xie

arXiv: 1904.08936 · 2019-04-22

## TL;DR

This paper introduces the Long Term Memory network (LTM), a new neural architecture that effectively handles long sequences in language modeling by overcoming gradient problems and scaling memory, achieving state-of-the-art results.

## Contribution

The paper presents LTM, a novel memory network that scales memory and weights inputs to improve long sequence learning in language models.

## Key findings

- LTM achieves state-of-the-art perplexity scores on Penn Treebank and Text8 datasets.
- LTM requires fewer cells to outperform existing models.
- LTM effectively mitigates vanishing and exploding gradient issues.

## Abstract

Recurrent Neural Networks (RNN), Long Short-Term Memory Networks (LSTM), and Memory Networks which contain memory are popularly used to learn patterns in sequential data. Sequential data has long sequences that hold relationships. RNN can handle long sequences but suffers from the vanishing and exploding gradient problems. While LSTM and other memory networks address this problem, they are not capable of handling long sequences (50 or more data points long sequence patterns). Language modelling requiring learning from longer sequences are affected by the need for more information in memory. This paper introduces Long Term Memory network (LTM), which can tackle the exploding and vanishing gradient problems and handles long sequences without forgetting. LTM is designed to scale data in the memory and gives a higher weight to the input in the sequence. LTM avoid overfitting by scaling the cell state after achieving the optimal results. The LTM is tested on Penn treebank dataset, and Text8 dataset and LTM achieves test perplexities of 83 and 82 respectively. 650 LTM cells achieved a test perplexity of 67 for Penn treebank, and 600 cells achieved a test perplexity of 77 for Text8. LTM achieves state of the art results by only using ten hidden LTM cells for both datasets.

## Full text

_Full body text omitted from this summary view._ Fetch the complete paper as Markdown: https://tomesphere.com/paper/1904.08936/full.md

## Figures

3 figures with captions in the complete paper: https://tomesphere.com/paper/1904.08936/full.md

## References

30 references — full list in the complete paper: https://tomesphere.com/paper/1904.08936/full.md

---
Source: https://tomesphere.com/paper/1904.08936