--- license: apache-2.0 library_name: transformers pipeline_tag: text-generation language: - en tags: - kozu - reasoning - trace-inversion - synthetic-reasoning - chain-of-thought datasets: - open-thoughts/OpenThoughts3-1.2M ---
Kuiper-R1 reconstructs full, readable reasoning from a problem, its final answer, and compressed reasoning bubbles.
Each result follows a three-tag contract: <synthetic_trace>, <verification_note>, and <final>. The final answer is preserved byte-for-byte, while the reconstructed trace is explicitly labeled synthetic.
Use Kuiper-R1 for reasoning-dataset augmentation, interpretability review, and research into reasoning compression and expansion. Do not present its synthetic traces as another model's hidden chain-of-thought.
Serve with vLLM. Disable the default thinking pass so the requested three-tag contract can use the full output budget.
Start the private checkpoint:
vllm serve Michael-Kozu/Kuiper-R1 \
--served-model-name kuiper-r1 \
--max-model-len 8192 \
--gpu-memory-utilization 0.85 \
--skip-mm-profiling \
--trust-remote-code
Send an OpenAI-compatible request:
{
"model": "kuiper-r1",
"messages": [
{
"role": "system",
"content": "You are Kuiper, a reasoning-trace inversion model."
},
{
"role": "user",
"content": "Problem:\n[problem text]\n\nAnswer:\n[exact final answer]\n\nReasoning Bubbles:\n- [bubble one]\n- [bubble two]\n\nReconstruct the full reasoning trace."
}
],
"temperature": 0.4,
"repetition_penalty": 1.1,
"chat_template_kwargs": {"enable_thinking": false}
}
Training uses domain-balanced science, math, and code rows from OpenThoughts3-1.2M. Reasoning traces are compressed into extractive bubbles deterministically, without an additional model call.
| Metric | Base | Kuiper-R1 |
|---|---|---|
| Final answer preserved · exact | 0.155 | 0.820 |
| Format valid · 3-tag contract | 0.980 | 0.880 |
| Expansion quality | 0.791 | 0.769 |
| Semantic consistency | 0.708 | 0.535 |
| No invented tool outputs | 1.000 | 1.000 |
| Overall | 0.329 | 0.504 |
The checkpoint is released under the Apache License 2.0.