A lightweight utility library for reinforcement learning projects in JAX and Equinox.
Project description
JymKit
JymKit is your lightweight utility library for reinforcement learning projects in JAX.
🚀 Getting started
JymKit lets you bootstrap your new reinforcement learning projects directly from the command line. As such, for new projects, the easiest way to get started is via uv:
uvx jymkit <projectname> uv run example_train.py # ... or via pipx pipx run jymkit <projectname> # activate a virtual environment in your preferred way, e.g. conda python example_train.py
For existing projects, you can simply install JymKit via pip and import the required functionality.
pip install jymkit
import jax import jymkit as jym from jymkit.algorithms import PPO env = jym.make("CartPole") env = jymkit.LogWrapper(env) rng = jax.random.PRNGKey(0) agent = PPO(total_timesteps=5e5, learning_rate=2.5e-3) agent = agent.train(rng, env)
🏠 Environments
JymKit is not aimed at delivering a full environment suite. However, it does come equipped with a jym.make(...) command to import environments from existing suites and wrap them appropriately to the JymKit API standard. For example, using environments from Gymnax:
import jymkit as jym
from jymkit.algorithms import PPO
import jax
env = jym.make("Breakout-MinAtar")
env = jym.FlattenObservationWrapper(env)
env = jym.LogWrapper(env)
agent = PPO(**some_good_hyperparameters)
agent = agent.train(jax.random.PRNGKey(0), env)
# > Using an environment from Gymnax via gymnax.make(Breakout-MinAtar).
# > Wrapping Gymnax environment with GymnaxWrapper
# > Disable this behavior by passing wrapper=False
# > Wrapping environment in VecEnvWrapper
# > ... training results
For convenience, JymKit will include the 5 classic-control environments (2/5 currently).
Currently, only Gymnax environments can be imported directly. More libraries are coming up. Note that some Gymnax environments no longer work properly with newer versions of JAX.
Environment API
The JymKit API stays close to the somewhat established Gymnax API for the reset() and step() functions, but allows for truncated episodes in a manner closer to Gymnasium.
env = jym.make(...)
obs, env_state = env.reset(key) # <-- Mirroring Gymnax
(obs, reward, terminated, truncated, info), env_state = env.step(key, state, action) # <-- Gymnasium Timestep tuple with state information
🤖 Algorithms
Algorithms in jymkit.algorithms are built following a near-single-file implementation philosophy in mind. In contrast to implementations in CleanRL or PureJaxRL, JymKit algorithms are built in Equinox and follow a class-based design with a familiar Stable-Baselines API.
Each algorithm supports both discrete- and continuous action/observation space -- adjusting based on the provided environment observation_space and action_space. Additionally, the implementations support multi-agent environments out of the box.
Currently, only a
PPOimplementation is implemented. More will be included in the near future, but the general idea is not to recreate every algorithm.
from jymkit.algorithms import PPO
import jax
env = ...
agent = PPO(**some_good_hyperparameters)
agent = agent.train(jax.random.PRNGKey(0), env)
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 jymkit-0.0.7.tar.gz.
File metadata
- Download URL: jymkit-0.0.7.tar.gz
- Upload date:
- Size: 25.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
10a26facb4c0fe19618868f81e7a846d93eb44d6b24e778898d8b9c29c9c6233
|
|
| MD5 |
a1ff3eb71f66770bd091656ea06b87c4
|
|
| BLAKE2b-256 |
8c9f101bc9a686f766036ee4009d1a082eb807e4fd33f67768f7edac42cee4d5
|
File details
Details for the file jymkit-0.0.7-py3-none-any.whl.
File metadata
- Download URL: jymkit-0.0.7-py3-none-any.whl
- Upload date:
- Size: 33.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
777bbdddec35ac50909e6e10ee58109395652905fb1e1f0cf547b0e7f7ac92af
|
|
| MD5 |
e269f9f95672c8f3c563825fcaa839fa
|
|
| BLAKE2b-256 |
a51d84cbb55b2f5c0c07b7110ebf8f1e8e5f79c7feaf31a857ee05fed9f67230
|