Causal Graphical Models
Project description
Causal Graphical Models
A python library for building causal graphical models, closely following Daphne Koller's Coursera course on Probabilistic Graphical Models, and her 2009 book Probabilistic Graphical Models: Principles and Techniques. The source for this project is available here.
Installation
NumPy is the only dependency. Python version must be >= 3.7.
pip install cgm
Usage
import numpy as np
import cgm
np.random.seed(30)
# Define all nodes
A = cgm.DAG_Node('A', nStates=3)
B = cgm.DAG_Node('B', 3)
C = cgm.DAG_Node('C', 3)
D = cgm.DAG_Node('D', 3)
# Specify all parents of nodes
cgm.CPD(child=B, parents=[A])
cgm.CPD(C, [B])
cgm.CPD(D, [A, B])
# Create graph
graph = cgm.DAG([A, B, C, D])
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
cgm-0.0.3.tar.gz
(7.2 kB
view hashes)
Built Distribution
cgm-0.0.3-py3-none-any.whl
(10.2 kB
view hashes)