Bootstrap-based Causal Structure Learning
Project description
BCSL Python
Python port of the Bootstrap-based Causal Structure Learning Algorithm. Depends on the causal-learn package for scoring.
Installation
pip install bcsl-python causal-learn
Usage
import numpy as np
from bcsl import BCSL
# Generate synthetic data for testing
n_samples = 200
# Independent variables
Var1 = np.random.normal(0, 1, n_samples)
Var2 = np.random.normal(0, 1, n_samples)
# Dependent variables
Var3 = 2 * Var1 + np.random.normal(0, 1, n_samples) # Var3 depends on Var1
Var4 = 0.5 * Var2 + np.random.normal(0, 1, n_samples) # Var4 depends on Var2
Var5 = (
Var3 + Var4 + np.random.normal(0, 1, n_samples)
) # Var5 depends on Var3 and Var4
data = pd.DataFrame(
{"Var1": Var1, "Var2": Var2, "Var3": Var3, "Var4": Var4, "Var5": Var5}
)
bcsl = BCSL(data, num_bootstrap_samples=4)
# Step 1: Learn local skeletons using HITON-PC
local_skeletons = bcsl.learn_local_skeleton()
print("Local Skeletons:", local_skeletons)
# Step 2: Resolve asymmetric edges using bootstrap
undirected_graph = bcsl.combine_local_to_global_skeleton()
print("Global Skeleton (resolved):", bcsl.global_skeleton)
print("Undirected Graph:", undirected_graph)
# Step 3: Orient edges using BDeu and hill-climbing
dag = bcsl.orient_edges()
print("Final DAG:", dag)
Reference
Xianjie Guo, Yujie Wang, Xiaoling Huang, Shuai Yang, and Kui Yu. 2022. Bootstrap-based Causal Structure Learning. In Proceedings of the 31st ACM International Conference on Information & Knowledge Management (CIKM '22). Association for Computing Machinery, New York, NY, USA, 656–665. https://doi.org/10.1145/3511808.3557249
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bcsl_python-0.8.0.tar.gz.
File metadata
- Download URL: bcsl_python-0.8.0.tar.gz
- Upload date:
- Size: 19.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f6d8186d6839b2d2adeeba57b8be459fc7fa47921a1f56e08209ab113bb405e
|
|
| MD5 |
505f0c8cfd8d1a7dbd318b0bd8c836c0
|
|
| BLAKE2b-256 |
3f4e452397c74a7535104aba9563268487b319ceafde7a7ca4aa49613f05aebb
|
File details
Details for the file bcsl_python-0.8.0-py3-none-any.whl.
File metadata
- Download URL: bcsl_python-0.8.0-py3-none-any.whl
- Upload date:
- Size: 23.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
703d7a7aab610ca1c1f006191e4eaa0b9ce543fc23c86f7455bfd56fee10c729
|
|
| MD5 |
761edef87dd4e5f99acdf8fc4466378d
|
|
| BLAKE2b-256 |
bbebae6372cb2812f5c72705da06acb2e6849f0b6e3543b247ec7c42fefba3bc
|