mirror of
https://github.com/wassname/ray.git
synced 2026-07-12 18:32:07 +08:00
8aa56c12e6
* re * wip * wip * a3c working * torch support * pg works * lint * rm v2 * consumer id * clean up pg * clean up more * fix python 2.7 * tf session management * docs * dqn wip * fix compile * dqn * apex runs * up * impotrs * ddpg * quotes * fix tests * fix last r * fix tests * lint * pass checkpoint restore * kwar * nits * policy graph * fix yapf * com * class * pyt * vectorization * update * test cpe * unit test * fix ddpg2 * changes * wip * args * faster test * common * fix * add alg option * batch mode and policy serving * multi serving test * todo * wip * serving test * doc async env * num envs * comments * thread * remove init hook * update * fix ppo * comments1 * fix * updates * add jenkins tests * fix * fix pytorch * fix * fixes * fix a3c policy * fix squeeze * fix trunc on apex * fix squeezing for real * update * remove horizon test for now * multiagent wip * update * fix race condition * fix ma * t * doc * st * wip * example * wip * working * cartpole * wip * batch wip * fix bug * make other_batches None default * working * debug * nit * warn * comments * fix ppo * fix obs filter * update * wip * tf * update * fix * cleanup * cleanup * spacing * model * fix * dqn * fix ddpg * doc * keep names * update * fix * com * docs * clarify model outputs * Update torch_policy_graph.py * fix obs filter * pass thru worker index * fix * rename * vlad torch comments * fix log action * debug name * fix lstm * remove unused ddpg net * remove conv net * revert lstm * wip * wip * cast * wip * works * fix a3c * works * lstm util test * doc * clean up * update * fix lstm check * move to end * fix sphinx * fix cmd * remove bad doc * envs * vec * doc prep * models * rl * alg * up * clarify * copy * async sa * fix * comments * fix a3c conf * tune lstm * fix reshape * fix * back to 16 * tuned a3c update * update * tuned * optional * merge * wip * fix up * move pg class * rename env * wip * update * tip * alg * readme * fix catalog * readme * doc * context * remove prep * comma * add env * link to paper * paper * update * rnn * update * wip * clean up ev creation * fix * fix * fix * fix lint * up * no comma * ma * Update run_multi_node_tests.sh * fix * sphinx is stupid * sphinx is stupid * clarify torch graph * no horizon * fix config * sb * Update test_optimizers.py
221 lines
7.4 KiB
Python
221 lines
7.4 KiB
Python
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
|
|
from six.moves import queue
|
|
import threading
|
|
import uuid
|
|
|
|
|
|
class ServingEnv(threading.Thread):
|
|
"""An environment that provides policy serving.
|
|
|
|
Unlike simulator envs, control is inverted. The environment queries the
|
|
policy to obtain actions and logs observations and rewards for training.
|
|
This is in contrast to gym.Env, where the algorithm drives the simulation
|
|
through env.step() calls.
|
|
|
|
You can use ServingEnv as the backend for policy serving (by serving HTTP
|
|
requests in the run loop), for ingesting offline logs data (by reading
|
|
offline transitions in the run loop), or other custom use cases not easily
|
|
expressed through gym.Env.
|
|
|
|
ServingEnv supports both on-policy serving (through self.get_action()), and
|
|
off-policy serving (through self.log_action()).
|
|
|
|
This env is thread-safe, but individual episodes must be executed serially.
|
|
|
|
Examples:
|
|
>>> register_env("my_env", lambda config: YourServingEnv(config))
|
|
>>> agent = DQNAgent(env="my_env")
|
|
>>> while True:
|
|
print(agent.train())
|
|
"""
|
|
|
|
def __init__(self, action_space, observation_space, max_concurrent=100):
|
|
"""Initialize a serving env.
|
|
|
|
ServingEnv subclasses must call this during their __init__.
|
|
|
|
Arguments:
|
|
action_space (gym.Space): Action space of the env.
|
|
observation_space (gym.Space): Observation space of the env.
|
|
max_concurrent (int): Max number of active episodes to allow at
|
|
once. Exceeding this limit raises an error.
|
|
"""
|
|
|
|
threading.Thread.__init__(self)
|
|
self.daemon = True
|
|
self.action_space = action_space
|
|
self.observation_space = observation_space
|
|
self._episodes = {}
|
|
self._finished = set()
|
|
self._results_avail_condition = threading.Condition()
|
|
self._max_concurrent_episodes = max_concurrent
|
|
|
|
def run(self):
|
|
"""Override this to implement the run loop.
|
|
|
|
Your loop should continuously:
|
|
1. Call self.start_episode()
|
|
2. Call self.get_action() or self.log_action()
|
|
3. Call self.log_returns()
|
|
4. Call self.end_episode()
|
|
5. Wait if nothing to do.
|
|
|
|
Multiple episodes may be started at the same time.
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
def start_episode(self, episode_id=None, training_enabled=True):
|
|
"""Record the start of an episode.
|
|
|
|
Arguments:
|
|
episode_id (str): Unique string id for the episode or None for
|
|
it to be auto-assigned.
|
|
training_enabled (bool): Whether to use experiences for this
|
|
episode to improve the policy.
|
|
|
|
Returns:
|
|
episode_id (str): Unique string id for the episode.
|
|
"""
|
|
|
|
if episode_id is None:
|
|
episode_id = uuid.uuid4().hex
|
|
|
|
if episode_id in self._finished:
|
|
raise ValueError(
|
|
"Episode {} has already completed.".format(episode_id))
|
|
|
|
if episode_id in self._episodes:
|
|
raise ValueError(
|
|
"Episode {} is already started".format(episode_id))
|
|
|
|
self._episodes[episode_id] = _ServingEnvEpisode(
|
|
episode_id, self._results_avail_condition, training_enabled)
|
|
|
|
return episode_id
|
|
|
|
def get_action(self, episode_id, observation):
|
|
"""Record an observation and get the on-policy action.
|
|
|
|
Arguments:
|
|
episode_id (str): Episode id returned from start_episode().
|
|
observation (obj): Current environment observation.
|
|
|
|
Returns:
|
|
action (obj): Action from the env action space.
|
|
"""
|
|
|
|
episode = self._get(episode_id)
|
|
return episode.wait_for_action(observation)
|
|
|
|
def log_action(self, episode_id, observation, action):
|
|
"""Record an observation and (off-policy) action taken.
|
|
|
|
Arguments:
|
|
episode_id (str): Episode id returned from start_episode().
|
|
observation (obj): Current environment observation.
|
|
action (obj): Action for the observation.
|
|
"""
|
|
|
|
episode = self._get(episode_id)
|
|
episode.log_action(observation, action)
|
|
|
|
def log_returns(self, episode_id, reward, info=None):
|
|
"""Record returns from the environment.
|
|
|
|
The reward will be attributed to the previous action taken by the
|
|
episode. Rewards accumulate until the next action. If no reward is
|
|
logged before the next action, a reward of 0.0 is assumed.
|
|
|
|
Arguments:
|
|
episode_id (str): Episode id returned from start_episode().
|
|
reward (float): Reward from the environment.
|
|
info (dict): Optional info dict.
|
|
"""
|
|
|
|
episode = self._get(episode_id)
|
|
episode.cur_reward += reward
|
|
if info:
|
|
episode.cur_info = info or {}
|
|
|
|
def end_episode(self, episode_id, observation):
|
|
"""Record the end of an episode.
|
|
|
|
Arguments:
|
|
episode_id (str): Episode id returned from start_episode().
|
|
observation (obj): Current environment observation.
|
|
"""
|
|
|
|
episode = self._get(episode_id)
|
|
self._finished.add(episode.episode_id)
|
|
episode.done(observation)
|
|
|
|
def _get(self, episode_id):
|
|
"""Get a started episode or raise an error."""
|
|
|
|
if episode_id in self._finished:
|
|
raise ValueError(
|
|
"Episode {} has already completed.".format(episode_id))
|
|
|
|
if episode_id not in self._episodes:
|
|
raise ValueError("Episode {} not found.".format(episode_id))
|
|
|
|
return self._episodes[episode_id]
|
|
|
|
|
|
class _ServingEnvEpisode(object):
|
|
"""Tracked state for each active episode."""
|
|
|
|
def __init__(self, episode_id, results_avail_condition, training_enabled):
|
|
self.episode_id = episode_id
|
|
self.results_avail_condition = results_avail_condition
|
|
self.training_enabled = training_enabled
|
|
self.data_queue = queue.Queue()
|
|
self.action_queue = queue.Queue()
|
|
self.new_observation = None
|
|
self.new_action = None
|
|
self.cur_reward = 0.0
|
|
self.cur_done = False
|
|
self.cur_info = {}
|
|
|
|
def get_data(self):
|
|
if self.data_queue.empty():
|
|
return None
|
|
return self.data_queue.get_nowait()
|
|
|
|
def log_action(self, observation, action):
|
|
self.new_observation = observation
|
|
self.new_action = action
|
|
self._send()
|
|
self.action_queue.get(True, timeout=60.0)
|
|
|
|
def wait_for_action(self, observation):
|
|
self.new_observation = observation
|
|
self._send()
|
|
return self.action_queue.get(True, timeout=60.0)
|
|
|
|
def done(self, observation):
|
|
self.new_observation = observation
|
|
self.cur_done = True
|
|
self._send()
|
|
|
|
def _send(self):
|
|
item = {
|
|
"obs": self.new_observation,
|
|
"reward": self.cur_reward,
|
|
"done": self.cur_done,
|
|
"info": self.cur_info,
|
|
}
|
|
if self.new_action is not None:
|
|
item["off_policy_action"] = self.new_action
|
|
if not self.training_enabled:
|
|
item["info"]["training_enabled"] = False
|
|
self.new_observation = None
|
|
self.new_action = None
|
|
self.cur_reward = 0.0
|
|
with self.results_avail_condition:
|
|
self.data_queue.put_nowait(item)
|
|
self.results_avail_condition.notify()
|