Add model card
Browse files
README.md
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
base_model: meta-llama/Llama-3.2-1B-Instruct
|
| 4 |
+
language:
|
| 5 |
+
- en
|
| 6 |
+
tags:
|
| 7 |
+
- latent-reasoning
|
| 8 |
+
- interpretability
|
| 9 |
+
- reasoning
|
| 10 |
+
- coconut
|
| 11 |
+
- prosqa
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# Coconut · llama32-1b · ProsQA
|
| 15 |
+
|
| 16 |
+
This is the **Coconut** checkpoint trained on **ProsQA** with base model
|
| 17 |
+
[`meta-llama/Llama-3.2-1B-Instruct`](https://huggingface.co/meta-llama/Llama-3.2-1B-Instruct), from the paper
|
| 18 |
+
[*Are Latent Reasoning Models Easily Interpretable?*](https://arxiv.org/abs/2604.04902) (Dilgren & Wiegreffe, 2026).
|
| 19 |
+
|
| 20 |
+
- 📄 **Paper:** https://arxiv.org/abs/2604.04902
|
| 21 |
+
- 💻 **Code:** https://github.com/connordilgren/are-lrms-easily-interpretable
|
| 22 |
+
- 📚 **Collection (all checkpoints):** https://huggingface.co/collections/connordilgren/are-latent-reasoning-models-easily-interpretable-6a46a3c39b0045c223b15a89
|
| 23 |
+
|
| 24 |
+
## Files
|
| 25 |
+
|
| 26 |
+
This repository contains a single raw PyTorch checkpoint, **`checkpoint_10`** — the state dict as
|
| 27 |
+
saved by the training framework. It is not a `from_pretrained`-style model; it is loaded by
|
| 28 |
+
the paper's evaluation code, which builds the base model and applies this checkpoint.
|
| 29 |
+
|
| 30 |
+
## Usage
|
| 31 |
+
|
| 32 |
+
The evaluation code in the [repository](https://github.com/connordilgren/are-lrms-easily-interpretable) loads this checkpoint from the local path
|
| 33 |
+
configured in `model_paths.yaml`. Download it to the expected location with:
|
| 34 |
+
|
| 35 |
+
```bash
|
| 36 |
+
hf download connordilgren/llama32-1b-prosqa-coconut checkpoint_10 --local-dir checkpoints/llama32-1b_prosqa_coconut
|
| 37 |
+
```
|
| 38 |
+
|
| 39 |
+
This places the file at `checkpoints/llama32-1b_prosqa_coconut/checkpoint_10`, which is the path referenced for this model
|
| 40 |
+
(`llama` → `prosqa` → `coconut`) in `model_paths.yaml`. See the
|
| 41 |
+
repository README for full setup and evaluation instructions.
|
| 42 |
+
|
| 43 |
+
## Citation
|
| 44 |
+
|
| 45 |
+
```bibtex
|
| 46 |
+
@misc{dilgren2026latentreasoningmodelseasily,
|
| 47 |
+
title={Are Latent Reasoning Models Easily Interpretable?},
|
| 48 |
+
author={Connor Dilgren and Sarah Wiegreffe},
|
| 49 |
+
year={2026},
|
| 50 |
+
eprint={2604.04902},
|
| 51 |
+
archivePrefix={arXiv},
|
| 52 |
+
primaryClass={cs.LG},
|
| 53 |
+
url={https://arxiv.org/abs/2604.04902},
|
| 54 |
+
}
|
| 55 |
+
```
|