Skip to content

Commit 79da2bb

Browse files
Added a finite horizon=100 env registered in Gym.
1 parent c60d696 commit 79da2bb

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

example.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -229,4 +229,7 @@ def mujoco_wrapper_example():
229229
import mdp_playground
230230
import gym
231231
gym.make('RLToy-v0')
232-
gym.make('RLToy-v0', **{'state_space_size':8, 'action_space_size':8, 'state_space_type':'discrete', 'action_space_type':'discrete', 'terminal_state_density':0.25, 'maximally_connected': True})
232+
env = gym.make('RLToyFiniteHorizon-v0', **{'state_space_size':8, 'action_space_size':8, 'state_space_type':'discrete', 'action_space_type':'discrete', 'terminal_state_density':0.25, 'maximally_connected': True})
233+
env.reset()
234+
for i in range(10):
235+
print(env.step(env.action_space.sample()))

mdp_playground/__init__.py

+6
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,9 @@
44
id='RLToy-v0',
55
entry_point='mdp_playground.envs:RLToyEnv',
66
)
7+
8+
register(
9+
id='RLToyFiniteHorizon-v0',
10+
entry_point='mdp_playground.envs:RLToyEnv',
11+
max_episode_steps=100,
12+
)

0 commit comments

Comments
 (0)