Skip to main content

Efficiently Composable Data Augmentation on the GPU with Jax

Project description

Augmax

PyPI version Documentation Status

Augmax is an image data augmentation framework supporting efficiently-composable transformations with support for JAX function transformations. Its strengths are efficient execution of complex augmentation pipelines and batched data augmentation on the GPU/TPU via the use of jax.jit and jax.vmap.

In existing data augmentation frameworks, each transformation is executed separately, leading to many unnecessary memory reads and writes that could be avoided. In contrast, Augmax tries its best to fuse transformations together, so that these data-intensive operations are be minimized.

Getting Started

Augmax aims to implement an API similar to that of Albumentations. An augmentation pipeline is defined as a sequence of transformations, which are then randomly applied to the input images.

import jax
import augmax

transform = augmax.Chain(
  augmax.RandomCrop(256, 256),
  augmax.HorizontalFlip(),
  augmax.Rotate(),
)

image = ...

rng = jax.random.PRNGKey(27)

transformed_image = transform(rng, image)

Batch-wise Augmentation on the GPU

Leveraging the JAX infrastructure, it is possible to greatly accelerate data augmentation by using Just-in-Time compilation (jax.jit), which can execute the code on the GPU, as well as batched augmentation (jax.vmap).

Augmenting a single image on the GPU

transformed_image = jax.jit(transform)(rng, image)

Augmenting an entire batch of images on the GPU

sub_rngs = jax.random.split(rng, images.shape[0])
transformed_images = jax.jit(jax.vmap(transform))(sub_rngs, images)

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

augmax-0.4.1.tar.gz (11.5 kB view details)

Uploaded Source

Built Distribution

augmax-0.4.1-py3-none-any.whl (17.3 kB view details)

Uploaded Python 3

File details

Details for the file augmax-0.4.1.tar.gz.

File metadata

  • Download URL: augmax-0.4.1.tar.gz
  • Upload date:
  • Size: 11.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.3

File hashes

Hashes for augmax-0.4.1.tar.gz
Algorithm Hash digest
SHA256 d8e645203f535e243a3b16fb3634b10d4f168d1b9cfde4cda3892ab22bf31e8d
MD5 6c8a8e1ed56fb3c6d12f4807c2fe9e50
BLAKE2b-256 45f00ab2080eb132cf9bb70ee96e80ff57be323b09aed563825058760404e383

See more details on using hashes here.

File details

Details for the file augmax-0.4.1-py3-none-any.whl.

File metadata

  • Download URL: augmax-0.4.1-py3-none-any.whl
  • Upload date:
  • Size: 17.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.3

File hashes

Hashes for augmax-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 60f9711a4ffc08f27d1ff0783f7c51c01e6f78e20d4581d075ebf2d904ab2d14
MD5 5f5bd0a9638ad91f3365868abcb00f7d
BLAKE2b-256 f33e1cc3a97f3adbca740310de33ff41fd141f7cd9b2b5baafdfbc3dd6526255

See more details on using hashes here.

Supported by

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