Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 656 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 656 Bytes

GymBoard - A small wrapper class that lets you render OpenAI Gym envs (as GIFs) in TensorBoard's Images tab

Installation:

pip install git+https://github.com/mishig25/GymBoard

Example usage:

in your python file, call:

import gym
from gymboard import GymBoard

env = gym.make('CartPole-v0')

gboard = GymBoard()
gboard.show()
gboard.write_env(env, step=0)

Checkout the notebook here for more comprehensive example.

License: MIT