Improve model card: add pipeline tag, paper link, and code link
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,14 +1,16 @@
|
|
| 1 |
---
|
| 2 |
-
|
|
|
|
| 3 |
datasets:
|
| 4 |
- HuggingFaceFW/fineweb-edu
|
|
|
|
| 5 |
model_name: Qwen3_1.7B_LoopUS_SFT
|
| 6 |
-
|
| 7 |
-
- Qwen/Qwen3-4B-Base
|
| 8 |
tags:
|
| 9 |
- LoopUS
|
| 10 |
- LoopedTrasnformers
|
| 11 |
---
|
|
|
|
| 12 |
<div align="center">
|
| 13 |
<h1>LoopUS: <br> Recasting Pretrained LLMs into Looped Latent Refinement Models</h1>
|
| 14 |
</div>
|
|
@@ -26,26 +28,41 @@ tags:
|
|
| 26 |
</p>
|
| 27 |
|
| 28 |
<p align="center">
|
| 29 |
-
<a href="https://
|
| 30 |
-
<a href="https://
|
| 31 |
<a href="https://arxiv.org/abs/2605.11011"><b>π Paper</b></a>
|
| 32 |
</p>
|
| 33 |
|
| 34 |
-
|
| 35 |
# Abstract
|
| 36 |
|
| 37 |
-
Looped computation shows promise in improving the reasoning-oriented performance of LLMs by scaling test-time compute.
|
| 38 |
|
| 39 |
# QuickStart
|
| 40 |
|
|
|
|
|
|
|
| 41 |
```bash
|
| 42 |
git clone https://github.com/Thrillcrazyer/LoopUS.git
|
| 43 |
cd LoopUS
|
| 44 |
-
uv
|
|
|
|
| 45 |
```
|
| 46 |
|
| 47 |
# Illustration of LoopUS
|
| 48 |
|
| 49 |
<div align="center">
|
| 50 |
<img src="https://raw.githubusercontent.com/Thrillcrazyer/LoopUS/main/assets/Framework.png" width="800"/>
|
| 51 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
base_model:
|
| 3 |
+
- Qwen/Qwen3-4B-Base
|
| 4 |
datasets:
|
| 5 |
- HuggingFaceFW/fineweb-edu
|
| 6 |
+
license: apache-2.0
|
| 7 |
model_name: Qwen3_1.7B_LoopUS_SFT
|
| 8 |
+
pipeline_tag: text-generation
|
|
|
|
| 9 |
tags:
|
| 10 |
- LoopUS
|
| 11 |
- LoopedTrasnformers
|
| 12 |
---
|
| 13 |
+
|
| 14 |
<div align="center">
|
| 15 |
<h1>LoopUS: <br> Recasting Pretrained LLMs into Looped Latent Refinement Models</h1>
|
| 16 |
</div>
|
|
|
|
| 28 |
</p>
|
| 29 |
|
| 30 |
<p align="center">
|
| 31 |
+
<a href="https://github.com/Thrillcrazyer/LoopUS"><b>π Github</b></a> |
|
| 32 |
+
<a href="https://thrillcrazyer.github.io/LoopUS"><b>π Project Page</b></a> |
|
| 33 |
<a href="https://arxiv.org/abs/2605.11011"><b>π Paper</b></a>
|
| 34 |
</p>
|
| 35 |
|
|
|
|
| 36 |
# Abstract
|
| 37 |
|
| 38 |
+
Looped computation shows promise in improving the reasoning-oriented performance of LLMs by scaling test-time compute. **Looped Depth Up-Scaling** (LoopUS) is a post-training framework that converts a standard pretrained LLM into a looped architecture. LoopUS recasts the pretrained LLM into an encoder, a looped reasoning block, and a decoder. It improves reasoning-oriented performance without extending the generated traces or requiring recurrent training from scratch.
|
| 39 |
|
| 40 |
# QuickStart
|
| 41 |
|
| 42 |
+
To use this model, clone the official repository and run the chat interface:
|
| 43 |
+
|
| 44 |
```bash
|
| 45 |
git clone https://github.com/Thrillcrazyer/LoopUS.git
|
| 46 |
cd LoopUS
|
| 47 |
+
uv sync
|
| 48 |
+
uv run chat.py --model-name Thrillcrazyer/Qwen3_1.7B_LoopUS_SFT
|
| 49 |
```
|
| 50 |
|
| 51 |
# Illustration of LoopUS
|
| 52 |
|
| 53 |
<div align="center">
|
| 54 |
<img src="https://raw.githubusercontent.com/Thrillcrazyer/LoopUS/main/assets/Framework.png" width="800"/>
|
| 55 |
+
</div>
|
| 56 |
+
|
| 57 |
+
# Citation
|
| 58 |
+
|
| 59 |
+
If you find LoopUS useful in your research, please cite:
|
| 60 |
+
|
| 61 |
+
```bibtex
|
| 62 |
+
@article{park2026loopus,
|
| 63 |
+
title={LoopUS: Recasting Pretrained LLMs into Looped Latent Refinement Models},
|
| 64 |
+
author={Park, Taekhyun and Lee, Yongjae and Kim, Dohee and Bae, Hyerim},
|
| 65 |
+
journal={arXiv preprint arXiv:2605.11011},
|
| 66 |
+
year={2026}
|
| 67 |
+
}
|
| 68 |
+
```
|