causy

causy

Causal discovery made easy. Causy allows you to use and implement causal discovery algorithms with easy to use, extend and maintain pipelines. It is built based on pytorch which allows you to run the algorithms on CPUs as well as GPUs seamlessly.

Learn more at https://causy.dev.

 1"""causy
 2
 3Causal discovery made easy. Causy allows you to use and implement causal discovery algorithms with easy to use, extend and maintain pipelines. It is built based on pytorch which allows you to run the algorithms on CPUs as well as GPUs seamlessly.
 4
 5Learn more at https://causy.dev.
 6
 7"""
 8
 9import importlib.metadata
10
11__version__ = importlib.metadata.version("causy")