Update README.md
Browse files
README.md
CHANGED
|
@@ -31,4 +31,20 @@ import torch
|
|
| 31 |
# Load transcoders into a ReplacementModel
|
| 32 |
model = ReplacementModel.from_pretrained("meta-llama/Llama-3.1-8B-Instruct", "facebook/crv-8b-instruct-transcoders", dtype=torch.bfloat16)
|
| 33 |
```
|
| 34 |
-
Once you have loaded the model, you can perform attribution or intervention as shown in [this demo](https://github.com/safety-research/circuit-tracer/blob/main/demos/llama_demo.ipynb).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
# Load transcoders into a ReplacementModel
|
| 32 |
model = ReplacementModel.from_pretrained("meta-llama/Llama-3.1-8B-Instruct", "facebook/crv-8b-instruct-transcoders", dtype=torch.bfloat16)
|
| 33 |
```
|
| 34 |
+
Once you have loaded the model, you can perform attribution or intervention as shown in [this demo](https://github.com/safety-research/circuit-tracer/blob/main/demos/llama_demo.ipynb).
|
| 35 |
+
|
| 36 |
+
## Citation
|
| 37 |
+
|
| 38 |
+
If you use this model, please cite our paper:
|
| 39 |
+
|
| 40 |
+
```bibtex
|
| 41 |
+
@article{zhao2025verifying,
|
| 42 |
+
title={Verifying Chain-of-Thought Reasoning via Its Computational Graph},
|
| 43 |
+
author={Zheng Zhao and Yeskendir Koishekenov and Xianjun Yang and Naila Murray and Nicola Cancedda},
|
| 44 |
+
year={2025},
|
| 45 |
+
eprint={2510.09312},
|
| 46 |
+
archivePrefix={arXiv},
|
| 47 |
+
primaryClass={cs.CL},
|
| 48 |
+
url={https://arxiv.org/abs/2510.09312},
|
| 49 |
+
}
|
| 50 |
+
```
|