stable-baselines3/torchy_baselines/ppo/ppo.py

362 lines
17 KiB
Python
Raw Normal View History

2019-09-18 11:10:27 +00:00
import time
2020-03-10 17:17:47 +00:00
from typing import List, Tuple, Type, Union, Callable, Optional, Dict, Any
2019-09-18 11:10:27 +00:00
2019-09-20 13:19:04 +00:00
import gym
from gym import spaces
2019-09-18 11:10:27 +00:00
import torch as th
import torch.nn.functional as F
2019-11-22 12:03:57 +00:00
2019-09-26 09:46:40 +00:00
# Check if tensorboard is available for pytorch
2020-03-23 16:15:30 +00:00
# TODO: finish tensorboard integration
# try:
# from torch.utils.tensorboard import SummaryWriter
# except ImportError:
# SummaryWriter = None
2019-09-18 11:10:27 +00:00
import numpy as np
2020-03-10 17:17:47 +00:00
from torchy_baselines.common import logger
2019-09-18 11:10:27 +00:00
from torchy_baselines.common.base_class import BaseRLModel
2020-03-12 11:34:25 +00:00
from torchy_baselines.common.type_aliases import GymEnv, MaybeCallback
2019-09-19 09:43:15 +00:00
from torchy_baselines.common.buffers import RolloutBuffer
2019-10-28 15:47:13 +00:00
from torchy_baselines.common.utils import explained_variance, get_schedule_fn
2020-01-27 13:32:31 +00:00
from torchy_baselines.common.vec_env import VecEnv
from torchy_baselines.common.callbacks import BaseCallback
2019-09-21 14:48:51 +00:00
from torchy_baselines.ppo.policies import PPOPolicy
2019-09-18 11:10:27 +00:00
class PPO(BaseRLModel):
"""
2019-09-26 09:46:40 +00:00
Proximal Policy Optimization algorithm (PPO) (clip version)
2019-09-18 11:10:27 +00:00
Paper: https://arxiv.org/abs/1707.06347
2020-01-22 16:17:12 +00:00
Code: This implementation borrows code from OpenAI Spinning Up (https://github.com/openai/spinningup/)
2019-09-26 09:46:40 +00:00
https://github.com/ikostrikov/pytorch-a2c-ppo-acktr-gail and
and Stable Baselines (PPO2 from https://github.com/hill-a/stable-baselines)
Introduction to PPO: https://spinningup.openai.com/en/latest/algorithms/ppo.html
:param policy: (PPOPolicy or str) The policy model to use (MlpPolicy, CnnPolicy, ...)
:param env: (Gym environment or str) The environment to learn from (if registered in Gym, can be str)
:param learning_rate: (float or callable) The learning rate, it can be a function
2019-10-28 15:47:13 +00:00
of the current progress (from 1 to 0)
2019-09-26 09:46:40 +00:00
:param n_steps: (int) The number of steps to run for each environment per update
(i.e. batch size is n_steps * n_env where n_env is number of environment copies running in parallel)
:param batch_size: (int) Minibatch size
:param n_epochs: (int) Number of epoch when optimizing the surrogate loss
:param gamma: (float) Discount factor
:param gae_lambda: (float) Factor for trade-off of bias vs variance for Generalized Advantage Estimator
2019-12-02 13:27:38 +00:00
:param clip_range: (float or callable) Clipping parameter, it can be a function of the current progress
(from 1 to 0).
2019-10-28 15:47:13 +00:00
:param clip_range_vf: (float or callable) Clipping parameter for the value function,
it can be a function of the current progress (from 1 to 0).
2019-09-26 09:46:40 +00:00
This is a parameter specific to the OpenAI implementation. If None is passed (default),
no clipping will be done on the value function.
IMPORTANT: this clipping depends on the reward scaling.
:param ent_coef: (float) Entropy coefficient for the loss calculation
:param vf_coef: (float) Value function coefficient for the loss calculation
:param max_grad_norm: (float) The maximum value for the gradient clipping
2019-10-28 17:24:13 +00:00
:param use_sde: (bool) Whether to use State Dependent Exploration (SDE)
instead of action noise exploration (default: False)
2019-12-17 10:47:21 +00:00
:param sde_sample_freq: (int) Sample a new noise matrix every n steps when using SDE
2019-12-20 10:28:20 +00:00
Default: -1 (only sample at the beginning of the rollout)
2019-09-26 09:46:40 +00:00
:param target_kl: (float) Limit the KL divergence between updates,
because the clipping is not enough to prevent large update
see issue #213 (cf https://github.com/hill-a/stable-baselines/issues/213)
By default, there is no limit on the kl div.
:param tensorboard_log: (str) the log location for tensorboard (if None, no logging)
:param create_eval_env: (bool) Whether to create a second environment that will be
used for evaluating the agent periodically. (Only available when passing string for the environment)
:param policy_kwargs: (dict) additional arguments to be passed to the policy on creation
2020-03-12 14:34:35 +00:00
:param verbose: (int) the verbosity level: 0 no output, 1 info, 2 debug
2019-09-26 09:46:40 +00:00
:param seed: (int) Seed for the pseudo random generators
:param device: (str or th.device) Device (cpu, cuda, ...) on which the code should be run.
Setting it to auto, the code will be run on the GPU if possible.
:param _init_setup_model: (bool) Whether or not to build the network at the creation of the instance
2019-09-18 11:10:27 +00:00
"""
2020-03-10 17:17:47 +00:00
def __init__(self, policy: Union[str, Type[PPOPolicy]],
env: Union[GymEnv, str],
learning_rate: Union[float, Callable] = 3e-4,
n_steps: int = 2048,
batch_size: Optional[int] = 64,
n_epochs: int = 10,
gamma: float = 0.99,
gae_lambda: float = 0.95,
clip_range: float = 0.2,
clip_range_vf: Optional[float] = None,
ent_coef: float = 0.0,
vf_coef: float = 0.5,
max_grad_norm: float = 0.5,
use_sde: bool = False,
sde_sample_freq: int = -1,
target_kl: Optional[float] = None,
tensorboard_log: Optional[str] = None,
create_eval_env: bool = False,
policy_kwargs: Optional[Dict[str, Any]] = None,
verbose: int = 0,
seed: Optional[int] = None,
device: Union[th.device, str] = 'auto',
_init_setup_model: bool = True):
2019-09-18 11:10:27 +00:00
super(PPO, self).__init__(policy, env, PPOPolicy, learning_rate, policy_kwargs=policy_kwargs,
2019-12-17 10:47:21 +00:00
verbose=verbose, device=device, use_sde=use_sde, sde_sample_freq=sde_sample_freq,
2019-10-10 11:47:13 +00:00
create_eval_env=create_eval_env, support_multi_env=True, seed=seed)
2019-09-18 11:10:27 +00:00
self.batch_size = batch_size
2019-09-26 09:46:40 +00:00
self.n_epochs = n_epochs
2019-09-18 11:10:27 +00:00
self.n_steps = n_steps
self.gamma = gamma
2019-09-24 12:53:03 +00:00
self.gae_lambda = gae_lambda
2019-09-18 13:35:17 +00:00
self.clip_range = clip_range
2019-10-28 15:47:13 +00:00
self.clip_range_vf = clip_range_vf
2019-09-18 13:35:17 +00:00
self.ent_coef = ent_coef
self.vf_coef = vf_coef
2019-09-19 15:18:41 +00:00
self.max_grad_norm = max_grad_norm
2019-09-18 13:35:17 +00:00
self.rollout_buffer = None
2019-09-19 15:18:41 +00:00
self.target_kl = target_kl
2019-09-21 15:09:26 +00:00
self.tensorboard_log = tensorboard_log
self.tb_writer = None
2019-09-18 11:10:27 +00:00
if _init_setup_model:
self._setup_model()
2020-03-11 12:01:42 +00:00
def _setup_model(self) -> None:
2020-03-16 13:05:21 +00:00
self._setup_lr_schedule()
self.set_random_seed(self.seed)
2019-09-18 11:10:27 +00:00
self.rollout_buffer = RolloutBuffer(self.n_steps, self.observation_space,
self.action_space, self.device,
gamma=self.gamma, gae_lambda=self.gae_lambda,
n_envs=self.n_envs)
self.policy = self.policy_class(self.observation_space, self.action_space,
2020-03-16 13:05:21 +00:00
self.lr_schedule, use_sde=self.use_sde, device=self.device,
2019-11-28 14:38:04 +00:00
**self.policy_kwargs)
self.policy = self.policy.to(self.device)
2019-09-18 11:10:27 +00:00
2019-10-28 15:47:13 +00:00
self.clip_range = get_schedule_fn(self.clip_range)
if self.clip_range_vf is not None:
2020-04-23 07:59:09 +00:00
if isinstance(self.clip_range_vf, (float, int)):
assert self.clip_range_vf > 0, ('`clip_range_vf` must be positive, '
'pass `None` to deactivate vf clipping')
2019-10-28 15:47:13 +00:00
self.clip_range_vf = get_schedule_fn(self.clip_range_vf)
2020-01-27 13:32:31 +00:00
def collect_rollouts(self,
2020-03-12 10:12:10 +00:00
env: VecEnv,
callback: BaseCallback,
rollout_buffer: RolloutBuffer,
2020-04-17 10:36:27 +00:00
n_rollout_steps: int = 256) -> bool:
2019-09-18 11:10:27 +00:00
2020-04-17 10:36:27 +00:00
assert self._last_obs is not None, "No previous observation was provided"
2019-09-18 13:35:17 +00:00
n_steps = 0
rollout_buffer.reset()
2019-10-28 17:24:13 +00:00
# Sample new weights for the state dependent exploration
if self.use_sde:
2019-12-17 10:47:21 +00:00
self.policy.reset_noise(env.num_envs)
2019-09-18 11:10:27 +00:00
2020-01-27 13:32:31 +00:00
callback.on_rollout_start()
2019-09-18 13:35:17 +00:00
while n_steps < n_rollout_steps:
2020-01-27 13:32:31 +00:00
2019-12-17 10:47:21 +00:00
if self.use_sde and self.sde_sample_freq > 0 and n_steps % self.sde_sample_freq == 0:
# Sample a new noise matrix
self.policy.reset_noise(env.num_envs)
2019-09-18 13:35:17 +00:00
with th.no_grad():
2020-03-23 16:15:30 +00:00
# Convert to pytorch tensor
2020-04-17 10:36:27 +00:00
obs_tensor = th.as_tensor(self._last_obs).to(self.device)
2020-03-23 16:15:30 +00:00
actions, values, log_probs = self.policy.forward(obs_tensor)
2019-09-20 13:19:04 +00:00
actions = actions.cpu().numpy()
2019-09-18 11:10:27 +00:00
2019-09-18 13:35:17 +00:00
# Rescale and perform action
2019-09-20 13:19:04 +00:00
clipped_actions = actions
# Clip the actions to avoid out of bound error
if isinstance(self.action_space, gym.spaces.Box):
clipped_actions = np.clip(actions, self.action_space.low, self.action_space.high)
2020-04-17 10:36:27 +00:00
2019-10-17 11:44:48 +00:00
new_obs, rewards, dones, infos = env.step(clipped_actions)
2019-09-18 11:10:27 +00:00
2020-03-12 11:34:25 +00:00
if callback.on_step() is False:
2020-04-17 10:36:27 +00:00
return False
2020-03-12 11:34:25 +00:00
2019-10-17 11:44:48 +00:00
self._update_info_buffer(infos)
2019-09-18 13:35:17 +00:00
n_steps += 1
2020-01-27 14:53:27 +00:00
self.num_timesteps += env.num_envs
2019-10-25 10:00:37 +00:00
if isinstance(self.action_space, gym.spaces.Discrete):
# Reshape in case of discrete action
actions = actions.reshape(-1, 1)
2020-04-17 10:36:27 +00:00
rollout_buffer.add(self._last_obs, actions, rewards, dones, values, log_probs)
self._last_obs = new_obs
2019-09-18 11:10:27 +00:00
2019-09-20 13:19:04 +00:00
rollout_buffer.compute_returns_and_advantage(values, dones=dones)
2019-09-18 11:10:27 +00:00
2020-01-27 13:32:31 +00:00
callback.on_rollout_end()
2020-04-17 10:36:27 +00:00
return True
2019-09-18 11:10:27 +00:00
2020-03-13 10:43:12 +00:00
def train(self, n_epochs: int, batch_size: int = 64) -> None:
2019-10-28 15:47:13 +00:00
# Update optimizer learning rate
self._update_learning_rate(self.policy.optimizer)
# Compute current clip range
clip_range = self.clip_range(self._current_progress)
# Optional: clip range for the value function
2019-10-28 15:47:13 +00:00
if self.clip_range_vf is not None:
clip_range_vf = self.clip_range_vf(self._current_progress)
2020-03-13 10:43:12 +00:00
entropy_losses, all_kl_divs = [], []
pg_losses, value_losses = [], []
clip_fractions = []
# train for gradient_steps epochs
for epoch in range(n_epochs):
2019-09-19 15:18:41 +00:00
approx_kl_divs = []
2020-03-13 10:43:12 +00:00
# Do a complete pass on the rollout buffer
2020-03-10 15:43:10 +00:00
for rollout_data in self.rollout_buffer.get(batch_size):
2020-03-10 15:43:10 +00:00
actions = rollout_data.actions
if isinstance(self.action_space, spaces.Discrete):
2020-03-10 15:43:10 +00:00
# Convert discrete action from float to long
actions = rollout_data.actions.long().flatten()
2019-12-20 10:28:20 +00:00
# Re-sample the noise matrix because the log_std has changed
# TODO: investigate why there is no issue with the gradient
# if that line is commented (as in SAC)
if self.use_sde:
self.policy.reset_noise(batch_size)
2020-03-10 15:43:10 +00:00
values, log_prob, entropy = self.policy.evaluate_actions(rollout_data.observations, actions)
2019-09-19 15:18:41 +00:00
values = values.flatten()
2019-09-19 09:43:15 +00:00
# Normalize advantage
2020-03-12 14:34:35 +00:00
advantages = rollout_data.advantages
advantages = (advantages - advantages.mean()) / (advantages.std() + 1e-8)
2019-09-19 09:43:15 +00:00
2019-09-19 15:18:41 +00:00
# ratio between old and new policy, should be one at the first iteration
2020-03-10 15:43:10 +00:00
ratio = th.exp(log_prob - rollout_data.old_log_prob)
2019-09-19 15:18:41 +00:00
# clipped surrogate loss
2020-03-10 15:43:10 +00:00
policy_loss_1 = advantages * ratio
policy_loss_2 = advantages * th.clamp(ratio, 1 - clip_range, 1 + clip_range)
2019-09-19 09:43:15 +00:00
policy_loss = -th.min(policy_loss_1, policy_loss_2).mean()
2019-09-19 15:18:41 +00:00
2020-03-13 10:43:12 +00:00
# Logging
pg_losses.append(policy_loss.item())
clip_fraction = th.mean((th.abs(ratio - 1) > clip_range).float()).item()
clip_fractions.append(clip_fraction)
2019-09-19 15:18:41 +00:00
if self.clip_range_vf is None:
# No clipping
values_pred = values
else:
# Clip the different between old and new value
# NOTE: this depends on the reward scaling
2020-03-12 10:12:10 +00:00
values_pred = rollout_data.old_values + th.clamp(values - rollout_data.old_values, -clip_range_vf,
clip_range_vf)
2019-09-24 12:53:03 +00:00
# Value loss using the TD(gae_lambda) target
2020-03-10 15:43:10 +00:00
value_loss = F.mse_loss(rollout_data.returns, values_pred)
2020-03-13 10:43:12 +00:00
value_losses.append(value_loss.item())
2019-09-19 15:18:41 +00:00
# Entropy loss favor exploration
if entropy is None:
# Approximate entropy when no analytical form
entropy_loss = -log_prob.mean()
else:
entropy_loss = -th.mean(entropy)
2019-09-19 15:18:41 +00:00
2020-03-13 10:43:12 +00:00
entropy_losses.append(entropy_loss.item())
2019-09-19 09:43:15 +00:00
loss = policy_loss + self.ent_coef * entropy_loss + self.vf_coef * value_loss
2019-09-19 15:18:41 +00:00
2019-09-19 09:43:15 +00:00
# Optimization step
self.policy.optimizer.zero_grad()
loss.backward()
2019-09-19 15:18:41 +00:00
# Clip grad norm
th.nn.utils.clip_grad_norm_(self.policy.parameters(), self.max_grad_norm)
2019-09-19 09:43:15 +00:00
self.policy.optimizer.step()
2020-03-10 15:43:10 +00:00
approx_kl_divs.append(th.mean(rollout_data.old_log_prob - log_prob).detach().cpu().numpy())
2019-09-19 15:18:41 +00:00
2020-03-13 10:43:12 +00:00
all_kl_divs.append(np.mean(approx_kl_divs))
2019-09-19 15:18:41 +00:00
if self.target_kl is not None and np.mean(approx_kl_divs) > 1.5 * self.target_kl:
2020-03-13 10:43:12 +00:00
print(f"Early stopping at step {epoch} due to reaching max kl: {np.mean(approx_kl_divs):.2f}")
2019-09-19 15:18:41 +00:00
break
2020-03-13 10:43:12 +00:00
self._n_updates += n_epochs
2020-02-03 14:40:34 +00:00
explained_var = explained_variance(self.rollout_buffer.returns.flatten(),
self.rollout_buffer.values.flatten())
2019-10-29 14:15:11 +00:00
2020-03-13 10:43:12 +00:00
logger.logkv("n_updates", self._n_updates)
logger.logkv("clip_fraction", np.mean(clip_fraction))
logger.logkv("clip_range", clip_range)
if self.clip_range_vf is not None:
logger.logkv("clip_range_vf", clip_range_vf)
2020-03-13 10:43:12 +00:00
logger.logkv("approx_kl", np.mean(approx_kl_divs))
2019-10-29 14:15:11 +00:00
logger.logkv("explained_variance", explained_var)
2020-03-13 10:43:12 +00:00
logger.logkv("entropy_loss", np.mean(entropy_losses))
logger.logkv("policy_gradient_loss", np.mean(pg_losses))
logger.logkv("value_loss", np.mean(value_losses))
2019-11-07 16:01:02 +00:00
if hasattr(self.policy, 'log_std'):
logger.logkv("std", th.exp(self.policy.log_std).mean().item())
2019-09-18 11:10:27 +00:00
2020-03-11 12:01:42 +00:00
def learn(self,
total_timesteps: int,
2020-03-12 11:34:25 +00:00
callback: MaybeCallback = None,
2020-03-11 12:01:42 +00:00
log_interval: int = 1,
eval_env: Optional[GymEnv] = None,
eval_freq: int = -1,
n_eval_episodes: int = 5,
tb_log_name: str = "PPO",
eval_log_path: Optional[str] = None,
reset_num_timesteps: bool = True) -> 'PPO':
2019-09-18 11:10:27 +00:00
2020-01-27 14:53:27 +00:00
iteration = 0
2020-04-17 10:36:27 +00:00
callback = self._setup_learn(eval_env, callback, eval_freq,
n_eval_episodes, eval_log_path, reset_num_timesteps)
2019-09-18 11:10:27 +00:00
2020-03-23 16:15:30 +00:00
# if self.tensorboard_log is not None and SummaryWriter is not None:
# self.tb_writer = SummaryWriter(log_dir=os.path.join(self.tensorboard_log, tb_log_name))
2019-09-21 15:09:26 +00:00
2020-01-27 13:32:31 +00:00
callback.on_training_start(locals(), globals())
2019-09-18 11:10:27 +00:00
while self.num_timesteps < total_timesteps:
2020-04-17 10:36:27 +00:00
continue_training = self.collect_rollouts(self.env, callback,
self.rollout_buffer,
n_rollout_steps=self.n_steps)
2020-01-27 13:32:31 +00:00
if continue_training is False:
break
2019-09-18 11:10:27 +00:00
2019-10-17 11:44:48 +00:00
iteration += 1
2019-10-28 15:47:13 +00:00
self._update_current_progress(self.num_timesteps, total_timesteps)
2019-09-18 11:10:27 +00:00
2019-10-17 11:44:48 +00:00
# Display training infos
if self.verbose >= 1 and log_interval is not None and iteration % log_interval == 0:
fps = int(self.num_timesteps / (time.time() - self.start_time))
logger.logkv("iterations", iteration)
if len(self.ep_info_buffer) > 0 and len(self.ep_info_buffer[0]) > 0:
logger.logkv('ep_rew_mean', self.safe_mean([ep_info['r'] for ep_info in self.ep_info_buffer]))
logger.logkv('ep_len_mean', self.safe_mean([ep_info['l'] for ep_info in self.ep_info_buffer]))
logger.logkv("fps", fps)
logger.logkv('time_elapsed', int(time.time() - self.start_time))
logger.logkv("total timesteps", self.num_timesteps)
logger.dumpkvs()
2019-09-26 09:46:40 +00:00
self.train(self.n_epochs, batch_size=self.batch_size)
2019-09-18 11:10:27 +00:00
2020-01-07 13:00:03 +00:00
# For tensorboard integration
# if self.tb_writer is not None:
# self.tb_writer.add_scalar('Eval/reward', mean_reward, self.num_timesteps)
2019-09-18 11:10:27 +00:00
2020-01-27 13:32:31 +00:00
callback.on_training_end()
2019-09-18 11:10:27 +00:00
return self
def get_torch_variables(self) -> Tuple[List[str], List[str]]:
"""
cf base class
"""
state_dicts = ["policy", "policy.optimizer"]
return state_dicts, []