Augmax is a library for efficiently composable data augmentation on GPU using JAX. Version 0.4.1 supports JAX transformations and provides a functional, composable augmentation pipeline. Release cadence is occasional; primarily maintained on GitHub.
pip install augmaxNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Defines a random augmentation pipeline and applies it to a batch of images.
Generate a new PRNG key for each call: key, subkey = jax.random.split(key) and pass subkey.
Ensure jax >= 0.4.0 and use jax.random.PRNGKey for key creation.
Convert numpy arrays to JAX arrays using jnp.array(...).
Use: from augmax import Chain
Convert to JAX array: import jax.numpy as jnp; images = jnp.array(numpy_images)