REAX: A simple training framework for JAX-based projects
Project description
REAX
REAX — Scalable, flexible training for JAX, inspired by the simplicity of PyTorch Lightning.
REAX - Scalable Training for JAX
REAX is a minimal and high-performance framework for training JAX models, designed to simplify research workflows. Inspired by PyTorch Lightning, it brings similar high-level abstractions and scalability to JAX users, making it easier to scale models across multiple GPUs with minimal boilerplate. 🚀
A Port of PyTorch Lightning to JAX
Much of REAX is built by porting the best practices and abstractions of PyTorch Lightning to the JAX ecosystem. If you’re familiar with PyTorch Lightning, you’ll recognize concepts like:
Training loops ⚡
Multi-GPU training 🖥️
Logging and checkpointing 💾
However, REAX has been designed with JAX-specific optimizations, ensuring high performance without sacrificing flexibility.
Why REAX? 🌟
Scalable: Built to leverage JAX’s parallelism and scalability. ⚡
Minimal Boilerplate: Simplifies the training process with just enough structure. 🧩
Familiar: For users who have experience with frameworks like PyTorch Lightning, the transition to REAX is seamless. 🔄
Installation 🛠️
To install REAX, run the following command:
pip install reax
REAX example
Define the training workflow. Here’s a toy example:
# main.py
# ! pip install torchvision
from functools import partial
import jax, optax, reax, flax.linen as linen
import torch.utils.data as data, torchvision as tv
class Autoencoder(linen.Module):
def setup(self):
super().__init__()
self.encoder = linen.Sequential([linen.Dense(128), linen.relu, linen.Dense(3)])
self.decoder = linen.Sequential([linen.Dense(128), linen.relu, linen.Dense(28 * 28)])
def __call__(self, x):
z = self.encoder(x)
return self.decoder(z)
# --------------------------------
# Step 1: Define a REAX Module
# --------------------------------
# A ReaxModule (nn.Module subclass) defines a full *system*
# (ie: an LLM, diffusion model, autoencoder, or simple image classifier).
class ReaxAutoEncoder(reax.Module):
def __init__(self):
super().__init__()
self.ae = Autoencoder()
def setup(self, stage: "reax.Stage", batch) -> None:
if self.parameters() is None:
x = batch[0].reshape(len(batch[0]), -1)
params = self.ae.init(self.rng_key(), x)
self.set_parameters(params)
def __call__(self, *args, **kwargs):
return self.forward(*args, **kwargs)
def forward(self, x):
embedding = jax.jit(self.ae.encoder.apply)(self.parameters()["params"]["encoder"], x)
return embedding
def training_step(self, batch, batch_idx):
x = batch[0].reshape(len(batch[0]), -1)
loss, grads = jax.value_and_grad(self.loss_fn, argnums=0)(self.parameters(), x, self.ae)
self.log("train_loss", loss, on_step=True, prog_bar=True)
return loss, grads
@staticmethod
@partial(jax.jit, static_argnums=2)
def loss_fn(params, x, model):
predictions = model.apply(params, x)
return optax.losses.squared_error(predictions, x).mean()
def configure_optimizers(self):
opt = optax.adam(learning_rate=1e-3)
state = opt.init(self.parameters())
return opt, state
# -------------------
# Step 2: Define data
# -------------------
dataset = tv.datasets.MNIST(".", download=True, transform=jax.numpy.asarray)
train, val = data.random_split(dataset, [55000, 5000])
# -------------------
# Step 3: Train
# -------------------
autoencoder = ReaxAutoEncoder()
trainer = reax.Trainer(autoencoder)
trainer.fit(reax.ReaxDataLoader(train), reax.ReaxDataLoader(val))
Here, we reproduce an example from PyTorch Lightning, so we use torch vision to fetch the data, but for real models there’s no need to use this or pytorch at all.
Disclaimer ⚠️
REAX takes inspiration from PyTorch Lightning, and large portions of its core functionality are directly ported from Lightning. If you are already familiar with Lightning, you’ll feel right at home with REAX, but we’ve tailored it to work seamlessly with JAX’s performance optimizations.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file reax-0.5.1.tar.gz.
File metadata
- Download URL: reax-0.5.1.tar.gz
- Upload date:
- Size: 109.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a11c54dfa1a34d14fee137cbd2ab19841b08023671c84f6dd8494b6309d4fce
|
|
| MD5 |
15358ae8d898605dcfed802f48a98bf2
|
|
| BLAKE2b-256 |
ade689a71cb5d94a35c5861e5525a8aaf4b3f90b3b6a9371da8b03d79bef5825
|
File details
Details for the file reax-0.5.1-py3-none-any.whl.
File metadata
- Download URL: reax-0.5.1-py3-none-any.whl
- Upload date:
- Size: 144.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2b0f090c105ff9fec5383bb46aca4e38c6c3167bc006e24caae04262e96211d
|
|
| MD5 |
eba7784500389a278cb32011e1cdc2a3
|
|
| BLAKE2b-256 |
7a97402dff0fbe708d03582b94b98c5028107f4cf8973af78706892669b8b72d
|