Instructions to use ModalityDance/latent-tts-rm with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ModalityDance/latent-tts-rm with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="ModalityDance/latent-tts-rm")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("ModalityDance/latent-tts-rm") model = AutoModelForTokenClassification.from_pretrained("ModalityDance/latent-tts-rm", device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 1,092 Bytes
b7e5476 a545b5e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | ---
library_name: transformers
tags:
- rm
- latent
datasets:
- openai/gsm8k
base_model:
- openai-community/gpt2
pipeline_tag: token-classification
---
# latent-tts-rm
The Latent Reward Model (LatentRM) is a learned scorer designed for latent reasoning models that reason in continuous hidden space.
LatentRM provides the missing aggregation signal for parallel test-time scaling in latent models, enabling techniques such as best-of-N and beam search without explicit token-level probabilities.
<p align="center">
<a href="https://arxiv.org/pdf/2510.07745"><b>Paper Link</b>👁️</a>
</p>
<p align="center">
<a href="https://github.com/ModalityDance/LatentTTS"><b>GitHub Repo</b>🐙</a>
</p>
## Citation
```
@misc{you2025paralleltesttimescalinglatent,
title={Parallel Test-Time Scaling for Latent Reasoning Models},
author={Runyang You and Yongqi Li and Meng Liu and Wenjie Wang and Liqiang Nie and Wenjie Li},
year={2025},
eprint={2510.07745},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2510.07745},
}
``` |