Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 594 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 594 Bytes

Skeleton Gym Environment for Deep Reinforcement Learning

Dependency

Make sure OpenAI's gym is installed https://gym.openai.com/docs/, e.g.

pip install gym

Installation

Navitage to main directory /Gym_Environment

pip install -e .

Implementation

import gym
import env_pkg

env = gym.make('fooEnv_ID')

See basicMLP.py for use with keras-rl

##Note: This is meant as an absolute minimal requirement for creating a Gym Environment. This does NOT check dependencies, log, or do anything fancy. See https://github.com/MartinThoma/banana-gym for further additions