Skip to main content

A PyTorch implementation of the NOTEARS Linear algorithm for causal discovery.

Project description

A PyTorch implementation of the NOTEARS algorithm (Non-parametric Optimization for Structure Learning) for causal discovery.

This package provides a continuous optimization approach to learning DAGs (Directed Acyclic Graphs) from data, harnessing the power of GPUs to accelerate the learning process.

Note: The original NOTEARS Linear implementation is CPU only.

📦 Installation

You can install this package directly from PyPi:


pip install notears-pytorch


🚀 Usage

Below is a basic example of how to use the linear NOTEARS algorithm.

from notears_pytorch import notears_linear


# 2. Run optimization
# Returns a binary adjacency matrix where B[i, j] = 1 implies i -> j
adj_matrix = notears_linear(X, lambda1=0.1, w_threshold=0.3)

print("Estimated Adjacency Matrix:")
print(adj_matrix)


📚 API Description

notears_linear

notears_linear(X, lambda1=0.1, rho_init=1.0, alpha_init=0.0, 
               outer_iter=50, inner_iter=100, init_lr=1e-2, 
               h_tol=1e-8, w_threshold=0.3, use_gpu=False)

Arguments:

  • X (np.ndarray): Input data matrix of shape (n_samples, n_features).
  • lambda1 (float): L1 regularization strength for sparsity.
  • rho_init (float): Initial penalty parameter for the augmented Lagrangian.
  • alpha_init (float): Initial value for the Lagrange multiplier.
  • outer_iter (int): Number of outer optimization iterations.
  • inner_iter (int): Number of inner Adam optimizer iterations per sub-problem.
  • init_lr (float): Initial learning rate for Adam optimizer.
  • h_tol (float): Tolerance for the acyclicity constraint.
  • w_threshold (float): Threshold for pruning weak edges in the adjacency matrix.
  • use_gpu (bool): If True, computation is performed on GPU (if available).

Returns:

  • np.ndarray: Estimated binary adjacency matrix of shape (n_features, n_features), where entry [i, j] = 1 indicates a directed edge from node i to node j.

Description: This function runs the linear NOTEARS algorithm to estimate the structure of a directed acyclic graph (DAG) from observational data. It uses continuous optimization and supports GPU acceleration for faster computation.

📄 Citation

If you use this implementation in your research, please cite this GitHub repository and the original paper:

Zheng, X., Aragam, B., Ravikumar, P. K., & Xing, E. P. (2018). DAGs with NO TEARS: Continuous Optimization for Structure Learning. Advances in Neural Information Processing Systems.

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

notears_pytorch-0.3.0.tar.gz (4.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

notears_pytorch-0.3.0-py3-none-any.whl (4.5 kB view details)

Uploaded Python 3

File details

Details for the file notears_pytorch-0.3.0.tar.gz.

File metadata

  • Download URL: notears_pytorch-0.3.0.tar.gz
  • Upload date:
  • Size: 4.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for notears_pytorch-0.3.0.tar.gz
Algorithm Hash digest
SHA256 df5fdc4e8cda517dd805e59fb9107a344ad21625436368aaf85ea96b29ead5a3
MD5 24018acdbba1c5ad31ecfa2f2efefe4f
BLAKE2b-256 1f468fde1b57ed9ebe4fe3e7b06d1526dd8ddfcd420fd1fea33197a3626a8704

See more details on using hashes here.

File details

Details for the file notears_pytorch-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for notears_pytorch-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 650af14f1e4c9d88b8cab6ab69e39054a91103473355e527304b8f0979ae6ae5
MD5 f30cc8257ff0f511cbb29073ad7a6f0e
BLAKE2b-256 b32dfdbbb854f00ee5224bf8bc53a2271f8ca5694c790b8992f621788f176f76

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page