Skip to main content

RLT (Recurrent Looped Transformer)

Unofficial implementation of the Recurrent Looped Transformer proposed by Yifan Zhang of Princeton.

Will also do some exploration of the Recurrent Transformer proposed by Costin-Andrei Oncescu et al. of Harvard, if I have any remaining time

Appreciation

  • Pranoy for the PR on weight tying / sharing between encoder and decoder!

Install

$ pip install rlt-pytorch

Usage

import torch
from RLT import RLT

model = RLT(
    num_tokens = 256,
    dim = 512,
    enc_depth = 4,
    dec_depth = 4,
    dec_sliding_window_size = 16,
    tbptt_step_size = 16 # optional truncated bptt
)

tokens = torch.randint(0, 256, (2, 1024))

# forward for loss

loss = model(tokens, return_loss = True)
loss.backward()

# generate

prompt = torch.randint(0, 256, (2, 32))

sampled = model.generate(prompt, max_len = 128) # (2, 96)

To turn on Next-Latent Prediction (Teoh et al.):

model = RLT(
    num_tokens = 256,
    dim = 512,
    enc_depth = 4,
    dec_depth = 4,
    next_lat_loss = True
)

loss = model(tokens, return_loss = True)
loss.backward()

The recurrent block size can also vary across the sequence by passing recurrent_lengths - a sequence of block lengths that must sum to the sequence length

block_lengths = (1, 2, 5, 2, 1, 3)

tokens = torch.randint(0, 256, (2, sum(block_lengths)))

loss = model(tokens, return_loss = True, recurrent_lengths = block_lengths)
loss.backward()

# during generation, the recurrent state only advances at the block boundaries

prompt = torch.randint(0, 256, (2, 2))

sampled = model.generate(prompt, recurrent_lengths = block_lengths)

Test

Train on enwik8

$ uv run train_enwik8.py

Citations

@techreport{zhang2026recurrentlooped,
    title  = {Recurrent Looped Transformer},
    author = {Zhang, Yifan},
    year   = {2026},
    month  = {Sep},
    url    = {https://github.com/yifanzhang-pro/recurrent-looped-tranformer}
}
@misc{oncescu2026recurrenttransformergreatereffective,
    title     = {The Recurrent Transformer: Greater Effective Depth and Efficient Decoding},
    author    = {Costin-Andrei Oncescu and Depen Morwani and Samy Jelassi and Alexandru Meterez and Mujin Kwun and Sham Kakade},
    year      = {2026},
    eprint    = {2604.21215},
    archivePrefix = {arXiv},
    primaryClass = {cs.LG},
    url       = {https://arxiv.org/abs/2604.21215},
}
@misc{kimiteam2026attentionresiduals,
    title   = {Attention Residuals},
    author  = {Kimi Team and Guangyu Chen and Yu Zhang and Jianlin Su and Weixin Xu and Siyuan Pan and Yaoyu Wang and Yucheng Wang and Guanduo Chen and Bohong Yin and Yutian Chen and Junjie Yan and Ming Wei and Y. Zhang and Fanqing Meng and Chao Hong and Xiaotong Xie and Shaowei Liu and Enzhe Lu and Yunpeng Tai and Yanru Chen and Xin Men and Haiqing Guo and Y. Charles and Haoyu Lu and Lin Sui and Jinguo Zhu and Zaida Zhou and Weiran He and Weixiao Huang and Xinran Xu and Yuzhi Wang and Guokun Lai and Yulun Du and Yuxin Wu and Zhilin Yang and Xinyu Zhou},
    year    = {2026},
    eprint  = {2603.15031},
    archivePrefix = {arXiv},
    primaryClass = {cs.CL},
    url     = {https://arxiv.org/abs/2603.15031},
}
@misc{teoh2025nextlatentpredictiontransformerslearn,
    title     = {Next-Latent Prediction Transformers Learn Compact World Models},
    author    = {Jayden Teoh and Manan Tomar and Kwangjun Ahn and Edward S. Hu and Tim Pearce and Pratyusha Sharma and Akshay Krishnamurthy and Riashat Islam and Alex Lamb and John Langford},
    year      = {2025},
    eprint    = {2511.05963},
    archivePrefix = {arXiv},
    primaryClass = {cs.LG},
    url       = {https://arxiv.org/abs/2511.05963}
}
@misc{wang2026fullbandwidthtransformer,
    title         = {Full-bandwidth transformer},
    author        = {Xi Wang and Ziyang Cai and Zheng Zhan and Harry Dong and Ying Fan and Gustavo de Rosa and Tim Pearce and John Langford},
    year          = {2026},
    eprint        = {2608.08888},
    archivePrefix = {arXiv},
    primaryClass  = {cs.LG},
    url           = {https://arxiv.org/abs/2608.08888}
}

Release files for RLT-pytorch 0.1.9

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for RLT-pytorch 0.1.9
File Size Uploaded
rlt_pytorch-0.1.9.tar.gz 15.0 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for RLT-pytorch 0.1.9
File Interpreter ABI Platform
rlt_pytorch-0.1.9-py3-none-any.whl Python 3 none any Details

Total release size: 29.2 kB

Release files / rlt_pytorch-0.1.9.tar.gz

Download URL rlt_pytorch-0.1.9.tar.gz
Size 15.0 kB
Tags Source
SHA-256 checksum
How to use checksums
d19036819bd2f379a14b25974e30edf05dd63f306d781bd608d0784604142fc3
BLAKE2b-256 checksum
How to use checksums
109cf7009f96f872493d41be3921338d567d7a637a84db20f21a1dfe00c4ef95
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.8.17

Release files / rlt_pytorch-0.1.9-py3-none-any.whl

Download URL rlt_pytorch-0.1.9-py3-none-any.whl
Size 14.3 kB
Tags Python 3
SHA-256 checksum
How to use checksums
b04c2e31e1d0a946b607c0119682f7fd926f362759153f135dedaab15fb55bee
BLAKE2b-256 checksum
How to use checksums
7b177e26f2cf8be16a8ce34b7f42eb16eb87fca79518c2abfc3a82937bba327f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.8.17

Release history Release notifications | RSS feed

This release

0.1.9 This release

2 release files

0.1.8

2 release files

0.1.7

2 release files

0.1.6

2 release files

0.1.5

2 release files

0.1.4

2 release files

0.1.2

2 release files

0.1.1

2 release files

0.1.0

2 release files

0.0.17

2 release files

0.0.16

2 release files

0.0.15

2 release files

0.0.14

2 release files

0.0.12

2 release files

0.0.11

2 release files

0.0.10

2 release files

0.0.9

2 release files

0.0.8

2 release files

0.0.7

2 release files

0.0.6

2 release files

0.0.5

2 release files

0.0.3

2 release files

0.0.2

2 release files

0.0.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page