“Retentive Network: A Successor to Transformer for Large Language Models”, Yutao Sun, Li Dong, Shaohan Huang, Shuming Ma, Yuqing Xia, Jilong Xue, Jianyong Wang, Furu Wei2023-07-17 (, )⁠:

In this work, we propose Retentive Network (RetNet) as a foundation architecture for large language models, simultaneously achieving training parallelism, low-cost inference, and good performance.

We theoretically derive the connection between recurrence and attention. Then we propose the retention mechanism for sequence modeling, which supports 3 computation paradigms, ie. parallel, recurrent, and chunk-wise recurrent.

Specifically, the parallel representation allows for training parallelism. The recurrent representation enables low-cost 𝒪(1) inference, which improves decoding throughput, latency, and GPU memory without sacrificing performance. The chunk-wise recurrent representation facilitates efficient long-sequence modeling with linear complexity, where each chunk is encoded in parallel while recurrently summarizing the chunks.

Experimental results on language modeling show that RetNet achieves favorable scaling results, parallel training, low-cost deployment, and efficient inference. The intriguing properties make RetNet a strong successor to Transformer for large language models.

Code will be available at Github.