Giter Club home page Giter Club logo

vario's Introduction

Discovering Invariant and Changing Mechanisms from Data

Vario Algorithms

  • VARIO_PI: Given a variable and its causes in multiple contexts, discovers a partition of the contexts, showing where the causal mechanism is invariant and where it changes. See causal_mechanism_search.py

  • VARIO: Given a variable observed in multiple contexts, discovers a context partition and the causal parents of that variable. See causal_variable_search.py.

  • VARIO_G: For a set of variables observed in multiple contexts, discovers context partitions and causal parents of each variable. See causal_dag_search.py.

Quick Example

data, index_Y, true_dag, true_partitions = generate_data_from_DAG(n_nodes=5, n_contexts=5, n_samples_per_context=500,
                                                                partition_Y=[[0, 1, 2],[3,4]],
                                                                min_interventions=5,max_interventions=5, scale=False, verbose=True, seed=3) 
                                                                
# VARIO_PI
oracle_partition, oracle_score, _ = causal_mechanism_search(data, index_Y, true_dag.parents_of(index_Y), greedy=False, verbose=True)

# VARIO
estim_parents, estim_partition, estim_score, _ = causal_variable_search(data, index_Y,  [n for n in range(n_nodes) if not (n==index_Y)], greedy_mechanism_search=False, verbose=True)

Setup

cd vario
pip install -e . 

vario's People

Contributors

srhmm avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.