mirror of
https://github.com/wassname/ray.git
synced 2026-06-28 11:21:15 +08:00
fb73cedf70
* wip * lint * wip * up * wip * update examples * wip * remove carla * update * improve envspec * link to custom * Update rllib-env.rst * update * fix * fn * lint * ds * ssd games * desc * fix up docs * fix
68 lines
1.9 KiB
Python
68 lines
1.9 KiB
Python
"""Example of a custom gym environment. Run this for a demo.
|
|
|
|
This example shows:
|
|
- using a custom environment
|
|
- using Tune for grid search
|
|
|
|
You can visualize experiment results in ~/ray_results using TensorBoard.
|
|
"""
|
|
|
|
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
|
|
import numpy as np
|
|
import gym
|
|
from gym.spaces import Discrete, Box
|
|
|
|
import ray
|
|
from ray.tune import run_experiments, grid_search
|
|
|
|
|
|
class SimpleCorridor(gym.Env):
|
|
"""Example of a custom env in which you have to walk down a corridor.
|
|
|
|
You can configure the length of the corridor via the env config."""
|
|
|
|
def __init__(self, config):
|
|
self.end_pos = config["corridor_length"]
|
|
self.cur_pos = 0
|
|
self.action_space = Discrete(2)
|
|
self.observation_space = Box(
|
|
0.0, self.end_pos, shape=(1, ), dtype=np.float32)
|
|
|
|
def reset(self):
|
|
self.cur_pos = 0
|
|
return [self.cur_pos]
|
|
|
|
def step(self, action):
|
|
assert action in [0, 1], action
|
|
if action == 0 and self.cur_pos > 0:
|
|
self.cur_pos -= 1
|
|
elif action == 1:
|
|
self.cur_pos += 1
|
|
done = self.cur_pos >= self.end_pos
|
|
return [self.cur_pos], 1 if done else 0, done, {}
|
|
|
|
|
|
if __name__ == "__main__":
|
|
# Can also register the env creator function explicitly with:
|
|
# register_env("corridor", lambda config: SimpleCorridor(config))
|
|
ray.init()
|
|
run_experiments({
|
|
"demo": {
|
|
"run": "PPO",
|
|
"env": SimpleCorridor, # or "corridor" if registered above
|
|
"stop": {
|
|
"timesteps_total": 10000,
|
|
},
|
|
"config": {
|
|
"lr": grid_search([1e-2, 1e-4, 1e-6]), # try different lrs
|
|
"num_workers": 1, # parallelism
|
|
"env_config": {
|
|
"corridor_length": 5,
|
|
},
|
|
},
|
|
},
|
|
})
|