GymBoard - A small wrapper class that lets you render OpenAI Gym envs (as GIFs) in TensorBoard's Images tab
pip install git+https://github.com/mishig25/GymBoard
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