Skip to main content

Vectorizable RL algorithms in pure JAX

Project description

Rejax
Hardware-Accelerated Reinforcement Learning Algorithms in pure Jax!
Open In Colab Code style: black License: Apache 2.0 PyPI version


Rejax is a library of RL algorithms which are implemented in pure Jax. It allows you to accelerate your RL pipelines by using jax.jit, jax.vmap, jax.pmap or any other transformation on whole training algorithms. Use it to quickly search for hyperparameters, evaluate agents for multiple seeds in parallel, or run meta-evolution experiments on your GPUs and TPUs. If you're new to rejax and want to learn more about it,

Open In Colab 📸 Take a tour

rejax demo

🏗 Installing rejax

  1. Install via pip: pip install rejax
  2. Install from source: pip install git+https://github.com/keraJLi/rejax

⚡ Vectorize training for incredible speedups!

  • Use jax.jit on the whole train function to run training exclusively on your GPU!
  • Use jax.vmap and jax.pmap on the initial seed or hyperparameters to train a whole batch of agents in parallel!
from rejax import SAC

# Get train function and initialize config for training
algo = SAC.create(env="CartPole-v1", learning_rate=0.001)

# Jit the training function
train_fn = jax.jit(algo.train)

# Vmap training function over 300 initial seeds
vmapped_train_fn = jax.vmap(train_fn)

# Train 300 agents!
keys = jax.random.split(jax.random.PRNGKey(0), 300)
train_state, evaluation = vmapped_train_fn(keys)

Benchmark on an A100 80G and a Intel Xeon 4215R CPU. Note that the hyperparameters were set to the default values of cleanRL, including buffer sizes. Shrinking the buffers can yield additional speedups due to better caching, and enables training of even more agents in parallel.

Speedup over cleanRL on hopper Speedup over cleanRL on breakout

🤖 Implemented algorithms

Algorithm Link Discrete Continuous Notes
PPO here
SAC here discrete version as in Christodoulou, 2019
DQN here incl. DDQN, Dueling DQN
PQN here
IQN here
TD3 here

🛠 Easily extend and modify algorithms

The implementations focus on clarity! Easily modify the implemented algorithms by overwriting isolated parts, such as the loss function, trajectory generation or parameter updates. For example, easily turn DQN into DDQN by writing

class DoubleDQN(DQN):
    def update(self, state, minibatch):
        # Calculate DDQN-specific targets
        targets = ddqn_targets(state, minibatch)

        # The loss function predicts Q-values and returns MSBE
        def loss_fn(params):
            ...
            return jnp.mean((targets - q_values) ** 2)

        # Calculate gradients
        grads = jax.grad(loss_fn)(state.q_ts.params)

        # Update train state
        q_ts = state.q_ts.apply_gradients(grads=grads)
        state = state.replace(q_ts=q_ts)
        return state

🔙 Flexible callbacks

Using callbacks, you can run logging to the console, disk, wandb, and much more. Even when the whole train function is jitted! For example, run a jax.experimental.io_callback regular intervals during training, or print the current policies mean return:

def print_callback(algo, state, rng):
    policy = make_act(algo, state)           # Get current policy
    episode_returns = evaluate(policy, ...)  # Evaluate it
    jax.debug.print(                         # Print results
        "Step: {}. Mean return: {}",
        state.global_step,
        episode_returns.mean(),
    )
    return ()  # Must return PyTree (None is not a PyTree)

algo = algo.replace(eval_callback=print_callback)

Callbacks have the signature callback(algo, train_state, rng) -> PyTree, which is called every eval_freq training steps with the config and current train state. The output of the callback will be aggregated over training and returned by the train function. The default callback runs a number of episodes in the training environment and returns their length and episodic return, such that the train function returns a training curve.

Importantly, this function is jit-compiled along with the rest of the algorithm. However, you can use one of Jax's callbacks such as jax.experimental.io_callback to implement model checkpoining, logging to wandb, and more, all while maintaining the advantages of a completely jittable training function.

💞 Alternatives in end-to-end GPU training

Libraries:

  • Brax along with several environments, brax implements PPO and SAC within their environment interface

Single file implementations:

  • PureJaxRL implements PPO, recurrent PPO and DQN
  • Stoix features DQN, DDPG, TD3, SAC, PPO, as well as popular extensions and more

✍ Cite us!

@misc{rejax, 
  title={rejax}, 
  url={https://github.com/keraJLi/rejax}, 
  journal={keraJLi/rejax}, 
  author={Liesen, Jarek and Lu, Chris and Lange, Robert}, 
  year={2024}
} 

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

rejax-0.1.1.tar.gz (31.5 kB view details)

Uploaded Source

Built Distribution

rejax-0.1.1-py3-none-any.whl (36.5 kB view details)

Uploaded Python 3

File details

Details for the file rejax-0.1.1.tar.gz.

File metadata

  • Download URL: rejax-0.1.1.tar.gz
  • Upload date:
  • Size: 31.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for rejax-0.1.1.tar.gz
Algorithm Hash digest
SHA256 652fbd0070ce01dd9ccb4fde6cfc057e79342bd6a54dfda62b1463c77c3cbc18
MD5 f9363ecd8ee85c354f4dd9ffdc0e3cad
BLAKE2b-256 66ff614638322f0e21ce5494e128b36547ba4f7988f48a7c551994ef086b3be6

See more details on using hashes here.

File details

Details for the file rejax-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: rejax-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 36.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for rejax-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 404d2a1dcdd6595924a1d5decb2551e2d5ffb47294c94e7b848f79e3c0e59c39
MD5 5c6a4d14a5af3d0021c975bb401de15b
BLAKE2b-256 94f7289b9418de721e603f802d62f4f568d171d10944c9f8f234e4e12601f795

See more details on using hashes here.

Supported by

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