Skip to main content

Normalizing flow implementations in jax.

Project description

flowjax


Normalising flow implementations in jax. Training a flow can be done in a few lines of code

from flowjax.flows import BlockNeuralAutoregressiveFlow
from flowjax.train_utils import train_flow
from jax import random

data_key, flow_key, train_key = random.split(random.PRNGKey(0), 3)

x = random.uniform(data_key, (10000, 3))  # Toy data
flow = BlockNeuralAutoregressiveFlow(flow_key, target_dim=3)
flow, losses = train_flow(train_key, flow, x, learning_rate=0.05)

# We can now evaluate the log-probability of arbitrary points
flow.log_prob(x)

So far the package supports:

  • Affine coupling flows/RealNVP for conditional/unconditional density estimation (Dinh et al.)

  • Neural spline coupling flows for conditional/unconditional density estimation (Durkan et al.)

  • Block neural autoregressive flows for unconditional density estimation (De Cao et al.)

For more detailed examples, see examples.

Authors


flowjax was written by Daniel Ward <danielward27@outlook.com>.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

flowjax-0.7.0.tar.gz (11.8 kB view hashes)

Uploaded Source

Built Distribution

flowjax-0.7.0-py3-none-any.whl (14.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page