# R-Transformer: Recurrent Neural Network Enhanced Transformer

**Authors:** Zhiwei Wang, Yao Ma, Zitao Liu, Jiliang Tang

arXiv: 1907.05572 · 2019-07-15

## TL;DR

The R-Transformer combines RNN and Transformer features to effectively model local and long-term sequence dependencies without position embeddings, outperforming current methods across various tasks.

## Contribution

It introduces a novel R-Transformer model that integrates RNN and multi-head attention to capture both local and global sequence structures without position embeddings.

## Key findings

- Outperforms state-of-the-art methods in multiple sequence tasks.
- Effectively models local structures and long-term dependencies.
- Eliminates the need for position embeddings.

## Abstract

Recurrent Neural Networks have long been the dominating choice for sequence modeling. However, it severely suffers from two issues: impotent in capturing very long-term dependencies and unable to parallelize the sequential computation procedure. Therefore, many non-recurrent sequence models that are built on convolution and attention operations have been proposed recently. Notably, models with multi-head attention such as Transformer have demonstrated extreme effectiveness in capturing long-term dependencies in a variety of sequence modeling tasks. Despite their success, however, these models lack necessary components to model local structures in sequences and heavily rely on position embeddings that have limited effects and require a considerable amount of design efforts. In this paper, we propose the R-Transformer which enjoys the advantages of both RNNs and the multi-head attention mechanism while avoids their respective drawbacks. The proposed model can effectively capture both local structures and global long-term dependencies in sequences without any use of position embeddings. We evaluate R-Transformer through extensive experiments with data from a wide range of domains and the empirical results show that R-Transformer outperforms the state-of-the-art methods by a large margin in most of the tasks. We have made the code publicly available at \url{https://github.com/DSE-MSU/R-transformer}.

## Full text

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

## Figures

4 figures with captions in the complete paper: https://tomesphere.com/paper/1907.05572/full.md

## References

34 references — full list in the complete paper: https://tomesphere.com/paper/1907.05572/full.md

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