Probabilistic modeling of tabular data with normalizing flows.
Project description
pzflow
Probabilistic modeling of tabular data with normalizing flows.
If your data consists of continuous variables that can be put into a Pandas DataFrame, pzflow can model the joint probability distribution of your data set.
The Flow
class makes building and training a normalizing flow simple.
It also allows you to easily sample from the normalizing flow (e.g., for forward modeling or data augmentation), and calculate posteriors over any of your variables.
There are many example notebooks demonstrating how to use pzflow.
Basic examples:
- Introduction of a basic flow with the two moons data set
- A more complex example with galaxy redshifts
- Building a conditional flow on redshift data
- Convolving Gaussian errors during training and posterior calculation
- Using a uniform dequantizer to model discrete data
- Using
FlowEnsemble
to build a deep ensemble
Advanced examples:
- Marginalizing over missing columns during posterior calculation
- Convolving non-Gaussian erorrs during training and posterior calculation
- Building a more complicated latent distribution to model data with a compact domain and periodic topology
If you notice any bugs, have any questions, or would like to request a feature, please submit an issue.
It is important to note that there are two different conventions in the literature for the direction of the bijection in normalizing flows. pzflow defines the bijection as the mapping from the data space to the latent space, and the inverse bijection as the mapping from the latent space to the data space. This distinction can be important when designing more complicated bijections (e.g., in Example 2 above).
Citation
We are preparing a paper on pzflow. If you use this package in your research, please check back here for a citation before publication. In the meantime, please cite the Zenodo release.
Installation
You can install pzflow from PyPI with pip:
pip install pzflow
If you want to run pzflow on a GPU with CUDA, you need to follow the GPU-enabled installation instructions for jaxlib here.
You may also need to add the following to your .bashrc
:
# cuda setup
export LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH
export PATH=$PATH:/usr/local/cuda/bin
If you have the GPU enabled version of jax installed, but would like to run on a CPU, add the following to the top of your scripts/notebooks:
import jax
# Global flag to set a specific platform, must be used at startup.
jax.config.update('jax_platform_name', 'cpu')
Note that if you run jax on GPU in multiple Jupyter notebooks simultaneously, you may get RuntimeError: cuSolver internal error
. Read more here and here.
Development
To work on pzflow, after forking and cloning the repo:
- Create a virtual environment with Python
E.g., with condaconda create -n pzflow
- Activate the environment.
E.g.,conda activate pzflow
- Install pzflow in edit mode with the
dev
flag
I.e., in the root directory,pip install -e .[dev]
Sources
pzflow was originally designed for forward modeling of photometric redshifts as a part of the Creation Module of the DESC RAIL project. The idea to use normalizing flows for photometric redshifts originated with Bryce Kalmbach. The earliest version of the normalizing flow in RAIL was based on a notebook by Francois Lanusse and included contributions from Alex Malz.
The functional jax structure of the bijectors was originally based on jax-flows
by Chris Waites. The implementation of the Neural Spline Coupling is largely based on the Tensorflow implementation, with some inspiration from nflows
.
Neural Spline Flows are based on the following papers:
NICE: Non-linear Independent Components Estimation
Laurent Dinh, David Krueger, Yoshua Bengio
arXiv:1410.8516
Density estimation using Real NVP
Laurent Dinh, Jascha Sohl-Dickstein, Samy Bengio
arXiv:1605.08803
Neural Spline Flows
Conor Durkan, Artur Bekasov, Iain Murray, George Papamakarios
arXiv:1906.04032
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pzflow-2.0.2.tar.gz
.
File metadata
- Download URL: pzflow-2.0.2.tar.gz
- Upload date:
- Size: 7.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d5a7cbf343b3fd4d263adc99bb2fa55d7ce07b97aeaceda65ab86830af1541a7 |
|
MD5 | f398eb984273fbf75706ae720f1c7ed4 |
|
BLAKE2b-256 | 7ee81c35cb1f9e9d2afb161faa2a372f3ac364595866bc6a5dad1fa83d891734 |