Skip to content

Latest commit

 

History

History
31 lines (16 loc) · 809 Bytes

README.md

File metadata and controls

31 lines (16 loc) · 809 Bytes

hockey-env

This repository contains a hockey-like game environment for RL

Install

python3 -m pip install git+https://github.com/martius-lab/hockey-env.git

or add the following line to your Pipfile

hockey = {editable = true, git = "https://[email protected]/martius-lab/hockey-env.git"}

HockeyEnv

Screenshot

hockey.hockey_env.HockeyEnv

A two-player (one per team) hockey environment. For our Reinforcment Learning Lecture @ Uni-Tuebingen. See Hockey-Env.ipynb notebook on how to run the environment.

The environment can be generated directly as an object or via the gym registry:

env = gym.envs.make("Hockey-v0")

There is also a version against the basic opponent (with options)

env = gym.envs.make("Hockey-One-v0", mode=0, weak_opponent=True)