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

# Data dependent initialization
model = NeuralSpline(x=x,
                     key=key,
                     n_layers=3,
                     n_res_blocks=4,
                     hidden_size=32,
                     working_size=16)

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

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

Installation

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.0.tar.gz (19.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.0-py3-none-any.whl (30.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: generax-0.0.0.tar.gz
  • Upload date:
  • Size: 19.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.0.tar.gz
Algorithm Hash digest
SHA256 99b4c0ffd68df4f816261bfee6e305036ceaa36f1617d8150d73375cff1b8bb3
MD5 d623f5f52e52d6f92a06afe427584414
BLAKE2b-256 efb4b2a501df01541f4cdfa0ea889f97c47784eeff21d30255f95c966687e13b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: generax-0.0.0-py3-none-any.whl
  • Upload date:
  • Size: 30.2 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.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d6aa7125aae4e4ee1bd2c40196218a711f1dc14b2b3c8738d6b72c3822a06073
MD5 1fc5e3ce28a0ca2eebb548e9b35b0018
BLAKE2b-256 88de8c8fa96fbfa21e9cc35acbd6c85fa0e4a4b1cdf916ffab738831c11fbd53

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