File size: 3,963 Bytes
a8c60d7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
252a35d
a8c60d7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
252a35d
 
a8c60d7
9c1b8f7
a8c60d7
 
9c1b8f7
a8c60d7
 
 
 
9c1b8f7
 
 
 
a8c60d7
 
 
 
9c1b8f7
a8c60d7
 
 
 
9c1b8f7
 
a8c60d7
 
 
9c1b8f7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a8c60d7
 
 
 
 
252a35d
a8c60d7
 
252a35d
 
 
 
a8c60d7
 
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
---
license: mit
library_name: transformers
pipeline_tag: text-generation
tags:
  - latent-reasoning
  - codi
  - slpo
  - gpt2
  - reinforcement-learning
base_model: ModalityDance/latent-tts-codi
---

# CODI + SLPO (GPT-2)

Surrogate Latent Policy Optimization (**SLPO**) checkpoint on top of [CODI](https://huggingface.co/ModalityDance/latent-tts-codi) (GPT-2 124M).
This is the **CODI+SLPO** model reported in the paper *SLPO: Scaling Latent Reasoning via a Surrogate Policy*.

## Model Details

- **Backbone**: CODI / GPT-2 (`ModalityDance/latent-tts-codi`)
- **Method**: stopping-gate cold start → SLPO (RLOO) with adaptive latent stopping
- **Special tokens**: `<|latent|>`, `<|start-latent|>`, `<|end-latent|>`
- **Recommended gate threshold**: `0.7`
- **Max latent length**: `12`

## Results (paper main table, Acc)

Deterministic accuracy with dropout disabled and learned stop gate:

| Benchmark | Acc | Mean latent length |
|-----------|-----|--------------------|
| GSM8K | 42.76 | 11.83 |
| GSM-Hard | 9.71 | 11.94 |
| MultiArith | 90.52 | 11.44 |

## Related

- Paper (arXiv): [2607.19691](https://arxiv.org/abs/2607.19691)
- Hugging Face Paper: [2607.19691](https://huggingface.co/papers/2607.19691)
- Code: [ModalityDance/SLPO](https://github.com/ModalityDance/SLPO)
- Project page: [modalitydance.github.io/SLPO](https://modalitydance.github.io/SLPO/)
- Base model: [ModalityDance/latent-tts-codi](https://huggingface.co/ModalityDance/latent-tts-codi)
- Sibling: [ModalityDance/slpo-coconut-gpt2](https://huggingface.co/ModalityDance/slpo-coconut-gpt2)
- Collection: [ModalityDance/SLPO](https://huggingface.co/collections/ModalityDance/slpo)

## Installation

```bash
git clone https://github.com/ModalityDance/SLPO.git
cd SLPO
pip install -r requirements.txt   # plus a CUDA PyTorch build
hf download ModalityDance/slpo-codi-gpt2 --local-dir checkpoints/slpo-codi-gpt2
```

## Quick Start

Batched eval (paper Acc settings):

```bash
CKPT=checkpoints/slpo-codi-gpt2 \
MODEL_TYPE=codi STOP_POLICY=gate \
STOP_GATE_THRESHOLD=0.7 MAX_LATENT_LENGTH=12 \
DATA=data/gsm_test.json \
bash scripts/eval.sh
```

Minimal Python (from the repo root; needs the SLPO latent generation stack):

```python
import torch
from transformers import AutoTokenizer

from src.models.generation import LatentGenerationMixin, LatentGenerationConfig
from src.paths import get_model_class

model_id = "ModalityDance/slpo-codi-gpt2"
backbone_cls = get_model_class("codi")

class LatentModel(backbone_cls, LatentGenerationMixin):
    pass

tokenizer = AutoTokenizer.from_pretrained(model_id)
if tokenizer.pad_token is None:
    tokenizer.pad_token = tokenizer.eos_token

model = LatentModel.from_pretrained(model_id)
model.eval()

question = (
    "Janet's ducks lay 16 eggs per day. She eats three for breakfast every morning "
    "and bakes muffins for her friends every day with four. She sells the remainder "
    "at the farmers' market daily for $2 per fresh duck egg. "
    "How much in dollars does she make every day at the farmers' market?"
)
prompt = question + "<|start-latent|>"
inputs = tokenizer(prompt, return_tensors="pt")

gen_cfg = LatentGenerationConfig(
    stop_policy="gate",
    max_latent_length=12,
    stop_gate_threshold=0.7,
    max_new_tokens=128,
    pad_token_id=tokenizer.pad_token_id,
    eos_token_id=tokenizer.eos_token_id,
    bos_token_id=tokenizer.bos_token_id,
)

with torch.no_grad():
    output = model.generate(**inputs, generation_config=gen_cfg)
sequences = output.sequences if hasattr(output, "sequences") else output
print(tokenizer.decode(sequences[0], skip_special_tokens=True))
```

## Citation

```bibtex
@misc{you2026slpo,
  title   = {SLPO: Scaling Latent Reasoning via a Surrogate Policy},
  author  = {You, Runyang and Liu, Zhiyuan and Li, Yongqi and Li, Wenjie},
  year    = {2026},
  eprint  = {2607.19691},
  archivePrefix = {arXiv},
  primaryClass = {cs.CL},
  url     = {https://arxiv.org/abs/2607.19691}
}
```