mirror of
https://github.com/wassname/ray.git
synced 2026-07-19 11:27:32 +08:00
* fixing policy * Compute Action is singular, fixed weird issue with arrays * remove vestige * extraneous ipdb * Can Drop in Pytorch Model * lint * naming * finish comments
106 lines
3.6 KiB
Python
106 lines
3.6 KiB
Python
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
|
|
import numpy as np
|
|
import pickle
|
|
import os
|
|
|
|
import ray
|
|
from ray.rllib.agent import Agent
|
|
from ray.rllib.a3c.envs import create_and_wrap
|
|
from ray.rllib.a3c.runner import RemoteRunner
|
|
from ray.rllib.a3c.shared_model import SharedModel
|
|
from ray.rllib.a3c.shared_model_lstm import SharedModelLSTM
|
|
from ray.tune.result import TrainingResult
|
|
|
|
|
|
DEFAULT_CONFIG = {
|
|
"num_workers": 4,
|
|
"num_batches_per_iteration": 100,
|
|
"batch_size": 10,
|
|
"use_lstm": True,
|
|
"model": {"grayscale": True,
|
|
"zero_mean": False,
|
|
"dim": 42,
|
|
"channel_major": True}
|
|
}
|
|
|
|
|
|
class A3CAgent(Agent):
|
|
_agent_name = "A3C"
|
|
_default_config = DEFAULT_CONFIG
|
|
|
|
def _init(self):
|
|
self.env = create_and_wrap(self.env_creator, self.config["model"])
|
|
if self.config["use_lstm"]:
|
|
policy_cls = SharedModelLSTM
|
|
else:
|
|
policy_cls = SharedModel
|
|
self.policy = policy_cls(
|
|
self.env.observation_space.shape, self.env.action_space)
|
|
self.agents = [
|
|
RemoteRunner.remote(self.env_creator, policy_cls, i,
|
|
self.config["batch_size"],
|
|
self.config["model"], self.logdir)
|
|
for i in range(self.config["num_workers"])]
|
|
self.parameters = self.policy.get_weights()
|
|
|
|
def _train(self):
|
|
gradient_list = [
|
|
agent.compute_gradient.remote(self.parameters)
|
|
for agent in self.agents]
|
|
max_batches = self.config["num_batches_per_iteration"]
|
|
batches_so_far = len(gradient_list)
|
|
while gradient_list:
|
|
done_id, gradient_list = ray.wait(gradient_list)
|
|
gradient, info = ray.get(done_id)[0]
|
|
self.policy.apply_gradients(gradient)
|
|
self.parameters = self.policy.get_weights()
|
|
if batches_so_far < max_batches:
|
|
batches_so_far += 1
|
|
gradient_list.extend(
|
|
[self.agents[info["id"]].compute_gradient.remote(
|
|
self.parameters)])
|
|
res = self._fetch_metrics_from_workers()
|
|
return res
|
|
|
|
def _fetch_metrics_from_workers(self):
|
|
episode_rewards = []
|
|
episode_lengths = []
|
|
metric_lists = [
|
|
a.get_completed_rollout_metrics.remote() for a in self.agents]
|
|
for metrics in metric_lists:
|
|
for episode in ray.get(metrics):
|
|
episode_lengths.append(episode.episode_length)
|
|
episode_rewards.append(episode.episode_reward)
|
|
avg_reward = (
|
|
np.mean(episode_rewards) if episode_rewards else float('nan'))
|
|
avg_length = (
|
|
np.mean(episode_lengths) if episode_lengths else float('nan'))
|
|
timesteps = np.sum(episode_lengths) if episode_lengths else 0
|
|
|
|
result = TrainingResult(
|
|
episode_reward_mean=avg_reward,
|
|
episode_len_mean=avg_length,
|
|
timesteps_this_iter=timesteps,
|
|
info={})
|
|
|
|
return result
|
|
|
|
def _save(self):
|
|
checkpoint_path = os.path.join(
|
|
self.logdir, "checkpoint-{}".format(self.iteration))
|
|
objects = [self.parameters]
|
|
pickle.dump(objects, open(checkpoint_path, "wb"))
|
|
return checkpoint_path
|
|
|
|
def _restore(self, checkpoint_path):
|
|
objects = pickle.load(open(checkpoint_path, "rb"))
|
|
self.parameters = objects[0]
|
|
self.policy.set_weights(self.parameters)
|
|
|
|
def compute_action(self, observation):
|
|
actions = self.policy.compute_action(observation)
|
|
return actions[0]
|