Skip to main content

Generative Models using Jax

Project description

generax

generax provides implementations of flow based generative models. The library is built on top of Equinox which removes the need to worry about keeping track of model parameters.

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)

# Take multiple samples using vmap
keys = random.split(key, 1000)
samples = eqx.filter_vmap(model.sample)(keys)

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

There is also support for probability paths (time-dependent probability distributions) which can be used to train continuous normalizing flows with flow matching. See the examples on flow matching and multi-sample flow matching for more details.

Samples

Installation

generax is available on pip:

pip install generax

Training

Generax provides an easy interface to train these models:

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

model = trainer.train(model=model,              # Generax model
                      objective=my_objective,   # 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 examples folder for more details.

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.5.tar.gz (48.7 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.5-py3-none-any.whl (84.0 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: generax-0.0.5.tar.gz
  • Upload date:
  • Size: 48.7 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.5.tar.gz
Algorithm Hash digest
SHA256 2e5d5adaab61438b588792c4993d735992560c0c78a82c113195a3927069c807
MD5 1856c5f3a1166960736cc5f32d233826
BLAKE2b-256 ebd6a57e0498740e7feb4f9f53e334925f8f6cd4e00b21af7cf3d6c1d85faac2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: generax-0.0.5-py3-none-any.whl
  • Upload date:
  • Size: 84.0 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.5-py3-none-any.whl
Algorithm Hash digest
SHA256 8e874bbfc01b116c9fb62a7f9faa01d99c3fdeee088482f5bbf163d61c61c4a4
MD5 26de2e743cf35b65b044ec61cfa1f700
BLAKE2b-256 5c39f4c04677bb9716b4578bb2e9de2aaff83db82864178891765bdabb76631c

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