File size: 2,019 Bytes
95e8feb | 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 | ---
license: mit
base_model: meta-llama/Llama-3.2-1B-Instruct
language:
- en
tags:
- latent-reasoning
- interpretability
- reasoning
- cot
- prosqa
---
# CoT · llama32-1b · ProsQA
This is the **CoT** checkpoint trained on **ProsQA** with base model
[`meta-llama/Llama-3.2-1B-Instruct`](https://huggingface.co/meta-llama/Llama-3.2-1B-Instruct), from the paper
[*Are Latent Reasoning Models Easily Interpretable?*](https://arxiv.org/abs/2604.04902) (Dilgren & Wiegreffe, 2026).
- 📄 **Paper:** https://arxiv.org/abs/2604.04902
- 💻 **Code:** https://github.com/connordilgren/are-lrms-easily-interpretable
- 📚 **Collection (all checkpoints):** https://huggingface.co/collections/connordilgren/are-latent-reasoning-models-easily-interpretable-6a46a3c39b0045c223b15a89
## Files
This repository contains a single raw PyTorch checkpoint, **`checkpoint_10`** — the state dict as
saved by the training framework. It is not a `from_pretrained`-style model; it is loaded by
the paper's evaluation code, which builds the base model and applies this checkpoint.
## Usage
The evaluation code in the [repository](https://github.com/connordilgren/are-lrms-easily-interpretable) loads this checkpoint from the local path
configured in `model_paths.yaml`. Download it to the expected location with:
```bash
hf download connordilgren/llama32-1b-prosqa-cot checkpoint_10 --local-dir checkpoints/llama32-1b_prosqa_cot
```
This places the file at `checkpoints/llama32-1b_prosqa_cot/checkpoint_10`, which is the path referenced for this model
(`llama` → `prosqa` → `cot`) in `model_paths.yaml`. See the
repository README for full setup and evaluation instructions.
## Citation
```bibtex
@misc{dilgren2026latentreasoningmodelseasily,
title={Are Latent Reasoning Models Easily Interpretable?},
author={Connor Dilgren and Sarah Wiegreffe},
year={2026},
eprint={2604.04902},
archivePrefix={arXiv},
primaryClass={cs.LG},
url={https://arxiv.org/abs/2604.04902},
}
```
|