| license: mit | |
| # CSP-Ablation-Project | |
| Artifacts from mechanistic interpretability of code vulnerability detection in OpenAI's [circuit-sparsity](https://huggingface.co/openai/circuit-sparsity) model. | |
| ## Project | |
| - **GitHub**: [piotrwilam/CSP-Ablation-Project](https://github.com/piotrwilam/CSP-Ablation-Project) | |
| - **Artifacts**: Probes, feature rankings, ablation sweep results | |
| ## Structure | |
| ``` | |
| artifacts/ | |
| sprint1/ | |
| v1.0/ # Phase 1 probe + Phase 2 ablation outputs | |
| ``` | |
| ## Usage | |
| ```python | |
| from huggingface_hub import hf_hub_download | |
| # Load probe | |
| path = hf_hub_download(repo_id="piotrwilam/CSP-Ablation-Project", | |
| filename="artifacts/sprint1/v1.0/code_vuln_probe.pkl") | |
| ``` | |