Skip to main content

GPU/TPU-accelerated parallel game simulators for reinforcement learning (RL)

Project description

ci

A collection of GPU/TPU-accelerated parallel game simulators for reinforcement learning (RL)

Why Pgx?

Brax, a JAX-native physics engine, provides extremely high-speed parallel simulation for RL in continuous state space. Then, what about RL in discrete state spaces like Chess, Shogi, and Go? Pgx provides a wide variety of JAX-native game simulators! Highlighted features include:

  • Super fast in parallel execution on accelerators
  • 🎲 Various game support including Backgammon, Chess, Shogi, and Go
  • 🖼️ Beautiful visualization in SVG format

Installation

pip install pgx

Usage

Note that all step functions in Pgx environments are JAX-native., i.e., they are all JIT-able.

Open In Colab

import jax
import pgx

env = pgx.make("go_19x19")
init = jax.jit(jax.vmap(env.init))  # vectorize and JIT-compile
step = jax.jit(jax.vmap(env.step))

batch_size = 1024
keys = jax.random.split(jax.random.PRNGKey(42), batch_size)
state = init(keys)  # vectorized states
while not (state.terminated | state.terminated).all():
    action = model(state.current_player, state.observation, state.legal_action_mask)
    state = step(state, action)  # state.reward (2,)

⚠️ Pgx is currently in the beta version. Therefore, API is subject to change without notice. We aim to release v1.0.0 in April 2023. Opinions and comments are more than welcome!

Supported games

Backgammon Chess Shogi Go

Use pgx.available_envs() -> Tuple[EnvId] to see the list of currently available games. Given an <EnvId>, you can create the environment via

>>> env = pgx.make(<EnvId>)

You can check the current version of each environment by

>>> env.version
Game/EnvId Visualization Version Five-word description
2048
"2048"
beta Merge tiles to create 2048.
Animal Shogi
"animal_shogi"
beta Animal-themed child-friendly shogi.
Backgammon
"backgammon"
beta Luck aids bearing off checkers.
Chess
"chess"
beta Checkmate opponent's king to win.
Connect Four
"connect_four"
beta Connect discs, win with four.
Go
"go_9x9" "go_19x19"
beta Strategically place stones, claim territory.
Hex
"hex"
beta Connect opposite sides, block opponent.
Kuhn Poker
"kuhn_poker"
beta Three-card betting and bluffing game.
Leduc hold'em
"leduc_holdem"
beta Two-suit, limited deck poker.
MinAtar/Asterix
"minatar-asterix"
beta Avoid enemies, collect treasure, survive.
MinAtar/Breakout
"minatar-breakout"
beta Paddle, ball, bricks, bounce, clear.
MinAtar/Freeway
"minatar-freeway"
beta Dodging cars, climbing up freeway.
MinAtar/Seaquest
"minatar-seaquest"
beta Underwater submarine rescue and combat.
MinAtar/SpaceInvaders
"minatar-space_invaders"
beta Alien shooter game, dodge bullets.
Othello
"othello"
beta Flip and conquer opponent's pieces.
Shogi
"shogi"
beta Japanese chess with captured pieces.
Sparrow Mahjong
"sparrow_mahjong"
beta A simplified, children-friendly Mahjong.
Tic-tac-toe
"tic_tac_toe"
beta Three in a row wins.

See also

Pgx is intended to complement these JAX-native environments with (classic) board game suits:

Combining Pgx with these JAX-native algorithms/implementations might be an interesting direction:

Citation

@article{koyamada2023pgx,
  title={Pgx: Hardware-accelerated parallel game simulation for reinforcement learning},
  author={Koyamada, Sotetsu and Okano, Shinri and Nishimori, Soichiro and Murata, Yu and Habara, Keigo and Kita, Haruka and Ishii, Shin},
  journal={arXiv preprint arXiv:2303.17503},
  year={2023}
}

LICENSE

Apache-2.0

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

pgx-0.7.1.tar.gz (227.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pgx-0.7.1-py3-none-any.whl (303.9 kB view details)

Uploaded Python 3

File details

Details for the file pgx-0.7.1.tar.gz.

File metadata

  • Download URL: pgx-0.7.1.tar.gz
  • Upload date:
  • Size: 227.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for pgx-0.7.1.tar.gz
Algorithm Hash digest
SHA256 a18394168a3e6d395cf20521d322f44be7ff55897de8379763a445dcaed55112
MD5 5602a95e31d27b8ee4a12bfefb2b92c1
BLAKE2b-256 5c08dba93b92047aa752cc8505e889ebcf52105323fb4508dd08bef80e1eed9d

See more details on using hashes here.

File details

Details for the file pgx-0.7.1-py3-none-any.whl.

File metadata

  • Download URL: pgx-0.7.1-py3-none-any.whl
  • Upload date:
  • Size: 303.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for pgx-0.7.1-py3-none-any.whl
Algorithm Hash digest
SHA256 349ac62992e0628c2814e372c01ac1894d6d34e8d432240fedac59e9a640e1ed
MD5 7a17ead62224194a47a2a8d27b8cdb22
BLAKE2b-256 eab9e3cac3d6e979ba117f5d0bb50b58fdb8e6882838999b552c75310c5fc4b4

See more details on using hashes here.

Supported by

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