File size: 1,448 Bytes
d84cd58
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
57
58
59
60
61
---
license: apache-2.0
tags:
  - causal-discovery
  - causal-inference
  - graph-ml
pretty_name: CauScale
---

# CauScale

Pretrained checkpoints for **[CauScale: Neural Causal Discovery at Scale](https://arxiv.org/abs/2602.08629)** (ICML 2026).

## Checkpoints

| File | Trained on | AUPRC |
|------|-----------|-------|
| `synthetic/auprc=0.905_migrated.ckpt` | Synthetic data (10–500 nodes) | 0.905 |
| `sergio/auprc=0.703_migrated.ckpt` | SERGIO gene expression data (10–200 nodes) | 0.703 |

## Usage

Download and place under `checkpoints/`:

```python
from huggingface_hub import hf_hub_download

hf_hub_download(
    repo_id="OpenCausaLab/causcale-model",
    filename="synthetic/auprc=0.905_migrated.ckpt",
    repo_type="model",
    local_dir="checkpoints",
)
hf_hub_download(
    repo_id="OpenCausaLab/causcale-model",
    filename="sergio/auprc=0.703_migrated.ckpt",
    repo_type="model",
    local_dir="checkpoints",
)
```

Then run inference:

```bash
bash bash/inference-synthetic.sh   # synthetic data
bash bash/inference-sergio.sh      # SERGIO gene expression data
```

See the [CauScale code repository](https://github.com/OpenCausaLab/CauScale) for full instructions.

## Citation

```bibtex
@article{peng2026causcale,
  title={CauScale: Neural Causal Discovery at Scale},
  author={Peng, Bo and Chen, Sirui and Tian, Jiaguo and Qiao, Yu and Lu, Chaochao},
  journal={arXiv preprint arXiv:2602.08629},
  year={2026}
}
```