Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 547 Bytes

File metadata and controls

23 lines (16 loc) · 547 Bytes

Gym Random Walk Environment

OpenAI Gym Environment of Random Walk example provided in [1] Chapter 6, example 6.2

RandomWalk

Installation

Assuming you are in rl-exercise folder and using pipenv

pipenv install environment/gym-random-walk

Usage Example

import gym
import gym_random_walk

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

References

[1] Richard S. Sutton, Andrew G. Barto - Reinforcement Learning: An Introduction