MagicalChair commited on
Commit
318c59b
·
verified ·
1 Parent(s): 36af2a1

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +71 -0
README.md ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - graph-ml
5
+ tags:
6
+ - causal-discovery
7
+ - causal-inference
8
+ - synthetic
9
+ - gene-regulatory-network
10
+ pretty_name: CauScale Dataset
11
+ ---
12
+
13
+ # CauScale Dataset
14
+
15
+ Dataset for **[CauScale: Neural Causal Discovery at Scale](https://arxiv.org/abs/2602.08629)** (ICML 2026).
16
+
17
+ ## Overview
18
+
19
+ This repository contains test data for CauScale, a neural architecture for causal graph discovery that scales to graphs with up to 1000 nodes.
20
+
21
+ ## Files
22
+
23
+ | File | Description |
24
+ |------|-------------|
25
+ | `data_test.zip` | Test data for synthetic and SERGIO benchmarks |
26
+
27
+ ## Data Format
28
+
29
+ Each dataset instance consists of:
30
+
31
+ - `DAG{i}.npy` — ground-truth adjacency matrix `(d, d)`, boolean, where entry `(i, j) = True` means i → j
32
+ - `data_interv{i}.npy` — concatenated observational and interventional data `(N, d)`
33
+ - `intervention{i}.csv` — intervened node index per row (empty = observational)
34
+ - `regime{i}.csv` — environment index per row (0 = observational, 1..K = interventional)
35
+
36
+ ### Synthetic Data
37
+
38
+ Generated using linear, neural network, and polynomial structural equation models on Erdős–Rényi (ER) and Scale-Free (SF) graphs.
39
+
40
+ - **Test**: 10–1000 nodes graph-sizes, 5 DAGs each, 1000 data points per DAG
41
+
42
+ ### SERGIO Gene Expression Data
43
+
44
+ Simulated single-cell gene expression data using the [SERGIO simulator](https://github.com/PayamDiba/SERGIO).
45
+
46
+ - **Test**: Nodes 100–200, ER graphs, 2 expected degrees (2, 4), 5 graphs each, 20000 interventional points
47
+
48
+ ## Usage
49
+
50
+ ```python
51
+ from huggingface_hub import hf_hub_download
52
+
53
+ path = hf_hub_download(
54
+ repo_id="OpenCausaLab/causcale-data",
55
+ filename="data_test.zip",
56
+ repo_type="dataset",
57
+ )
58
+ ```
59
+
60
+ See the [CauScale code repository](https://github.com/OpenCausaLab/CauScale) for full training and inference instructions.
61
+
62
+ ## Citation
63
+
64
+ ```bibtex
65
+ @article{peng2026causcale,
66
+ title={CauScale: Neural Causal Discovery at Scale},
67
+ author={Peng, Bo and Chen, Sirui and Tian, Jiaguo and Qiao, Yu and Lu, Chaochao},
68
+ journal={arXiv preprint arXiv:2602.08629},
69
+ year={2026}
70
+ }
71
+ ```