PyPhi is a Python platform for research in Integrated Information Theory (IIT). Its core task is computing Φ (integrated information) and the cause–effect structure a system specifies; around that it provides a broad toolkit for the analyses IIT research needs (see Beyond Φ).
Given a substrate — a network of interacting units defined by its transition probabilities — and a state, PyPhi computes:
- Φ, the integrated information of a system, by finding the partition that makes the least difference;
- the cause–effect structure (Φ-structure): the distinctions (irreducible mechanisms) a system specifies and the relations that bind them.
It implements the current formalism, IIT 4.0 (Albantakis et al., 2023), and retains the earlier IIT 3.0 formalism, selectable by configuration.
import pyphi
# A simple 3-node substrate (the example system from the IIT 4.0 paper).
substrate = pyphi.examples.basic_substrate()
state = (1, 0, 0)
# Analyze the substrate in that state under IIT 4.0.
analysis = pyphi.analyze(substrate, state)
print(analysis.phi) # the system's integrated information, ΦThe result carries the full Φ-structure — its distinctions, relations, and the partition that minimizes Φ. See the documentation and the IIT 4.0 demo notebook for a complete walkthrough.
Around the core Φ and cause–effect-structure computations, PyPhi is a toolkit for IIT research:
- Actual causation — which specific past events actually caused a given present event, and which effects it will actually cause (Albantakis et al., 2019).
- Matching and perception — quantify how well a system's cause–effect structure matches the causal structure of its environment, the basis of perception and intrinsic meaning in IIT (Mayner et al., 2024).
- Macro and micro scales — coarse-grain or black-box a substrate to analyze integrated information at different spatial and temporal scales.
- Analytical bounds — bound Φ and its components from above without the full combinatorial computation (Zaeemzadeh & Tononi, 2024).
- Parameter sweeps — evaluate many substrates, states, or configurations in one call, with optional parallelism.
- Estimating substrates from data — infer a substrate, with epistemic uncertainty, from observed state transitions.
- Simulating dynamics — settle a substrate to its most probable next states or sample stochastic trajectories.
- Substrate generation — build substrates from a library of unit mechanisms, weight matrices, or Ising models.
- Visualization — plot connectivity, repertoires, and Φ-structures
(requires the
visualizeextra). - Export and interop — export results to pandas DataFrames or xarray, and substrates to networkx, GraphML, or a two-timeslice dynamic Bayesian network.
- Saving and loading — persist any result to disk (JSON, transparently gzipped) and reload it later.
Release status. The version on the
mainbranch is the in-development 2.0 line, which implements IIT 4.0. The current release on PyPI is the 1.x line (IIT 3.0). To use the IIT 4.0 code today, install from GitHub (see Installation).
- Documentation for the latest stable release
- Documentation for the latest development version
- Documentation for any object is also available in the interpreter with the
helpfunction.
PyPhi requires Python 3.13+.
uv is a fast Python package manager:
# macOS/Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"Install the current PyPI release (1.x, IIT 3.0):
uv pip install pyphiInstall the in-development 2.0 line (IIT 4.0) from GitHub:
uv pip install "git+https://github.com/wmayner/pyphi@main"Optional features are available as extras: visualize (plotting), caching
(Redis-backed caches), emd (earth-mover's-distance measures), and xarray
(labeled array export). Install one or more with, e.g.:
uv pip install "pyphi[visualize,emd]"python -m pip install pyphi # current release (1.x)
python -m pip install "git+https://github.com/wmayner/pyphi@main" # 2.0 (IIT 4.0)To help develop PyPhi, fork the project on GitHub, clone your fork, and install the runtime extras plus the development tooling with uv:
git clone https://github.com/YOUR_USERNAME/pyphi.git
cd pyphi
uv sync --all-extras --group devCommon development tasks are defined in the justfile (install
just):
just test # run the test suite
just bench # run the performance benchmarks
just docs # build the HTML documentationFor discussion about the software or integrated information theory in general, join the pyphi-users group.
For bug reports and feature requests, use the issues page.
If you use this software in your research, please cite the papers:
Mayner WGP, Marshall W, Albantakis L, Findlay G, Marchman R, Tononi G. (2018). PyPhi: A toolbox for integrated information theory. PLOS Computational Biology 14(7): e1006343.
@article{mayner2018pyphi,
title={PyPhi: A toolbox for integrated information theory},
author={Mayner, William GP and Marshall, William and Albantakis, Larissa and Findlay, Graham and Marchman, Robert and Tononi, Giulio},
journal={PLoS Computational Biology},
volume={14},
number={7},
pages={e1006343},
year={2018},
publisher={Public Library of Science},
doi={10.1371/journal.pcbi.1006343},
url={https://doi.org/10.1371/journal.pcbi.1006343}
}
For the theory PyPhi 2.0 implements, cite the IIT 4.0 paper:
Albantakis L, Barbosa L, Findlay G, Grasso M, Haun AM, Marshall W, Mayner WGP, Zaeemzadeh A, Boly M, Juel BE, Sasai S, Fujii K, David I, Hendren J, Lang JP, Tononi G. (2023). Integrated information theory (IIT) 4.0: Formulating the properties of phenomenal existence in physical terms. PLOS Computational Biology 19(10): e1011465.
@article{albantakis2023iit4,
title={Integrated information theory (IIT) 4.0: Formulating the properties of phenomenal existence in physical terms},
author={Albantakis, Larissa and Barbosa, Leonardo and Findlay, Graham and Grasso, Matteo and Haun, Andrew M and Marshall, William and Mayner, William GP and Zaeemzadeh, Alireza and Boly, Melanie and Juel, Bj{\o}rn E and Sasai, Shuntaro and Fujii, Keiko and David, Isaac and Hendren, Jeremiah and Lang, Jonathan P and Tononi, Giulio},
journal={PLoS Computational Biology},
volume={19},
number={10},
pages={e1011465},
year={2023},
publisher={Public Library of Science},
doi={10.1371/journal.pcbi.1011465},
url={https://doi.org/10.1371/journal.pcbi.1011465}
}
For the IIT 3.0 formalism, cite:
Oizumi M, Albantakis L, Tononi G. (2014). From the Phenomenology to the Mechanisms of Consciousness: Integrated Information Theory 3.0. PLOS Computational Biology 10(5): e1003588.
@article{oizumi2014iit3,
title={From the phenomenology to the mechanisms of consciousness: Integrated Information Theory 3.0},
author={Oizumi, Masafumi and Albantakis, Larissa and Tononi, Giulio},
journal={PLoS Computational Biology},
volume={10},
number={5},
pages={e1003588},
year={2014},
publisher={Public Library of Science},
doi={10.1371/journal.pcbi.1003588},
url={https://doi.org/10.1371/journal.pcbi.1003588}
}
The initial version of this project was inspired by a previous project written in MATLAB by L. Albantakis, M. Oizumi, A. Hashmi, A. Nere, U. Olcese, P. Rana, and B. Shababo.
Correspondence regarding the PyPhi software should be directed to Will Mayner, at mayner@wisc.edu.