Skip to main content

Generative Models using Jax

Project description

generax

generax provides implementations of different kinds of generative models. The library is built on top of Equinox which removes the need to worry about keeping track of model parameters. For example, the following code snippet shows how to create a neural spline flow and sample from it.

key = random.PRNGKey(0) # JAX random key
x = ... # some data

# Create a flow model
model = NeuralSpline(input_shape=x.shape[1:],
                     n_flow_layers=3,
                     n_blocks=4,
                     hidden_size=32,
                     working_size=16,
                     n_spline_knots=8,
                     key=key)

# Data dependent initialization
model = model.data_dependent_init(x, key=key)

# Sample from the model
samples = model.sample(key, n_samples=1000)

# Compute the log probability of data
log_prob = model.log_prob(x)

Installation

generax is available on pip:

pip install generax

Roadmap

Implemented

  • Normalizing flows
  • Continuous normalizing flows
  • Diffusion models

And these models can be trained using a variety of methods including:

  • Maximum likelihood
  • Score matching
  • Flow matching
  • Variational inference

Training

Generax provides an easy interface to train these models:

trainer = Trainer(checkpoint_path='tmp/RealNVP')

model = trainer.train(model=model,              # Generax model
                      objective=max_likelihood, # Objective function
                      evaluate_model=tester,    # Testing function
                      optimizer=optimizer,      # Optax optimizer
                      num_steps=10000,          # Number of training steps
                      data_iterator=train_ds,   # Training data iterator
                      double_batch=1000,        # Train these many batches in a scan loop
                      checkpoint_every=1000,    # Checkpoint interval
                      test_every=1000,          # Test interval
                      retrain=True)             # Retrain from checkpoint

See the tutorial for an example.

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

generax-0.0.2.tar.gz (33.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

generax-0.0.2-py3-none-any.whl (52.1 kB view details)

Uploaded Python 3

File details

Details for the file generax-0.0.2.tar.gz.

File metadata

  • Download URL: generax-0.0.2.tar.gz
  • Upload date:
  • Size: 33.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.13

File hashes

Hashes for generax-0.0.2.tar.gz
Algorithm Hash digest
SHA256 7052d54801db8f914e15035445382e5e5347f23118c31eb2fe21d2ac25dad422
MD5 6738b39ced751ac16cc6d7a9e7de745b
BLAKE2b-256 49a1f253eac69adb4262b7c865bd9d99c7d418aaeab349ca3a6e2f42cfbc2c3a

See more details on using hashes here.

File details

Details for the file generax-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: generax-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 52.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.13

File hashes

Hashes for generax-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 48c43eb7900f6c35af2860c0945883fa40b30104923cfc9557197e682fc43372
MD5 b37fe8859b60b72ae6ece0ee68dbdd88
BLAKE2b-256 6479dd274e039d11d50556463e4c1c40981f034655474b1df354189e618016c4

See more details on using hashes here.

Supported by

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