Metadata-Version: 2.1
Name: pzflow
Version: 1.3.0
Summary: Probabilistic modeling of tabular data with normalizing flows.
Home-page: http://github.com/jfcrenshaw/pzflow
Author: John Franklin Crenshaw
Author-email: jfc20@uw.edu
License: MIT
Description: ![build](https://github.com/jfcrenshaw/pzflow/workflows/build/badge.svg)
        [![codecov](https://codecov.io/gh/jfcrenshaw/pzflow/branch/main/graph/badge.svg?token=qR5cey0swQ)](https://codecov.io/gh/jfcrenshaw/pzflow)
        [![PyPI version](https://badge.fury.io/py/pzflow.svg)](https://badge.fury.io/py/pzflow)
        
        # 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 to calculate posteriors over any of your variables.
        
        See [this Jupyter notebook](https://github.com/jfcrenshaw/pzflow/blob/main/examples/intro.ipynb) for an introduction.
        See [this notebook](https://github.com/jfcrenshaw/pzflow/blob/main/examples/redshift_example.ipynb) for a more complicated reshift example.
        
        ## 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](https://github.com/google/jax).
        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')
        ```
        
        ## Citation
        
        We are preparing a paper on pzflow.
        If you are using this package in your research, please check back here for a citation before publication.
        
        ### Development
        
        To work on pzflow, after forking and cloning the repo:
        1. Create a virtual environment with Python  
        E.g., with conda `conda create -n pzflow`
        2. Activate the environment.  
        E.g., `conda activate pzflow`  
        3. 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](https://lsstdesc.org/) [RAIL](https://github.com/LSSTDESC/RAIL) project.
        The idea to use normalizing flows for photometric redshifts originated with [Bryce Kalmbach](https://github.com/jbkalmbach).
        The earliest version of the normalizing flow in RAIL was based on a notebook by [Francois Lanusse](https://github.com/eiffl) and included contributions from [Alex Malz](https://github.com/aimalz).
        
        The jax structure of `pzflow` is largely based on [`jax-flows`](https://github.com/ChrisWaites/jax-flows) by [Chris Waites](https://github.com/ChrisWaites). The implementation of the Neural Spline Coupling is largely based on the [Tensorflow implementation](https://github.com/tensorflow/probability/blob/master/tensorflow_probability/python/bijectors/rational_quadratic_spline.py), with some inspiration from [`nflows`](https://github.com/bayesiains/nflows/).
        
        Neural Spline Flows are based on the following papers:
        
          > [NICE: Non-linear Independent Components Estimation](https://arxiv.org/abs/1410.8516)\
          > Laurent Dinh, David Krueger, Yoshua Bengio\
          > _arXiv:1410.8516_
        
          > [Density estimation using Real NVP](https://arxiv.org/abs/1605.08803)\
          > Laurent Dinh, Jascha Sohl-Dickstein, Samy Bengio\
          > _arXiv:1605.08803_
        
          > [Neural Spline Flows](https://arxiv.org/abs/1906.04032)\
          > Conor Durkan, Artur Bekasov, Iain Murray, George Papamakarios\
          > _arXiv:1906.04032_
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
Provides-Extra: dev
Provides-Extra: docs
