stable-baselines3/torchy_baselines/td3/policies.py

346 lines
16 KiB
Python
Raw Normal View History

2020-03-24 09:10:37 +00:00
from typing import Optional, List, Tuple, Callable, Union, Type
2020-03-16 12:31:06 +00:00
import gym
2019-09-05 15:29:41 +00:00
import torch as th
import torch.nn as nn
from torchy_baselines.common.preprocessing import get_action_dim, get_obs_dim
2020-03-23 14:31:14 +00:00
from torchy_baselines.common.policies import (BasePolicy, register_policy, create_mlp,
2020-03-23 16:15:30 +00:00
create_sde_features_extractor)
2020-03-20 10:20:57 +00:00
from torchy_baselines.common.distributions import StateDependentNoiseDistribution, Distribution
2019-09-06 12:01:10 +00:00
2020-03-23 14:31:14 +00:00
class Actor(BasePolicy):
2019-11-22 16:24:47 +00:00
"""
Actor network (policy) for TD3.
2020-03-23 14:31:14 +00:00
:param observation_space: (gym.spaces.Space) Obervation space
:param action_space: (gym.spaces.Space) Action space
2019-11-22 16:24:47 +00:00
:param net_arch: ([int]) Network architecture
2020-03-23 16:15:30 +00:00
:param features_extractor: (nn.Module) Network to extract features
(a CNN when using images, a nn.Flatten() layer otherwise)
:param features_dim: (int) Number of features
2020-03-24 09:10:37 +00:00
:param activation_fn: (Type[nn.Module]) Activation function
2019-11-22 16:24:47 +00:00
:param use_sde: (bool) Whether to use State Dependent Exploration or not
:param log_std_init: (float) Initial value for the log standard deviation
:param clip_noise: (float) Clip the magnitude of the noise
:param lr_sde: (float) Learning rate for the standard deviation of the noise
:param full_std: (bool) Whether to use (n_features x n_actions) parameters
2019-11-25 13:00:21 +00:00
for the std instead of only (n_features,) when using SDE.
:param sde_net_arch: ([int]) Network architecture for extracting features
when using SDE. If None, the latent features from the policy will be used.
Pass an empty list to use the states as features.
2020-03-12 14:34:35 +00:00
:param use_expln: (bool) Use ``expln()`` function instead of ``exp()`` when using SDE to ensure
2020-01-08 16:04:28 +00:00
a positive standard deviation (cf paper). It allows to keep variance
2020-03-12 14:34:35 +00:00
above zero and prevent it from growing too fast. In practice, ``exp()`` is usually enough.
2020-03-23 16:15:30 +00:00
:param normalize_images: (bool) Whether to normalize images or not,
dividing by 255.0 (True by default)
2019-11-22 16:24:47 +00:00
"""
2020-01-27 13:32:31 +00:00
def __init__(self,
2020-03-23 14:31:14 +00:00
observation_space: gym.spaces.Space,
action_space: gym.spaces.Space,
2020-01-27 13:32:31 +00:00
net_arch: List[int],
2020-03-23 16:15:30 +00:00
features_extractor: nn.Module,
features_dim: int,
2020-03-24 09:10:37 +00:00
activation_fn: Type[nn.Module] = nn.ReLU,
2020-01-27 13:32:31 +00:00
use_sde: bool = False,
log_std_init: float = -3,
clip_noise: Optional[float] = None,
lr_sde: float = 3e-4,
full_std: bool = False,
sde_net_arch: Optional[List[int]] = None,
2020-03-23 16:15:30 +00:00
use_expln: bool = False,
normalize_images: bool = True):
super(Actor, self).__init__(observation_space, action_space,
features_extractor=features_extractor,
normalize_images=normalize_images)
2019-09-05 15:29:41 +00:00
2019-11-07 16:31:52 +00:00
self.latent_pi, self.log_std = None, None
self.weights_dist, self.exploration_mat = None, None
2019-11-12 17:37:13 +00:00
self.use_sde, self.sde_optimizer = use_sde, None
self.full_std = full_std
2020-03-23 16:15:30 +00:00
self.sde_features_extractor = None
self.features_extractor = features_extractor
self.normalize_images = normalize_images
2019-11-07 16:31:52 +00:00
2020-03-23 14:31:14 +00:00
action_dim = get_action_dim(self.action_space)
2019-11-07 16:31:52 +00:00
if use_sde:
2020-03-23 16:15:30 +00:00
latent_pi_net = create_mlp(features_dim, -1, net_arch, activation_fn, squash_output=False)
self.latent_pi = nn.Sequential(*latent_pi_net)
latent_sde_dim = net_arch[-1]
learn_features = sde_net_arch is not None
# Separate feature extractor for SDE
if sde_net_arch is not None:
2020-03-23 16:15:30 +00:00
self.sde_features_extractor, latent_sde_dim = create_sde_features_extractor(features_dim, sde_net_arch,
activation_fn)
2019-11-25 12:19:33 +00:00
# Create state dependent noise matrix (SDE)
2020-01-08 16:04:28 +00:00
self.action_dist = StateDependentNoiseDistribution(action_dim, full_std=full_std, use_expln=use_expln,
squash_output=False, learn_features=learn_features)
2020-03-23 16:15:30 +00:00
2019-11-25 12:19:33 +00:00
action_net, self.log_std = self.action_dist.proba_distribution_net(latent_dim=net_arch[-1],
latent_sde_dim=latent_sde_dim,
2019-11-25 12:19:33 +00:00
log_std_init=log_std_init)
# Squash output
self.mu = nn.Sequential(action_net, nn.Tanh())
2019-11-07 16:31:52 +00:00
self.clip_noise = clip_noise
2019-11-12 17:37:13 +00:00
self.sde_optimizer = th.optim.Adam([self.log_std], lr=lr_sde)
2019-11-07 16:31:52 +00:00
self.reset_noise()
else:
2020-03-23 16:15:30 +00:00
actor_net = create_mlp(features_dim, action_dim, net_arch, activation_fn, squash_output=True)
self.mu = nn.Sequential(*actor_net)
2019-11-07 16:31:52 +00:00
2020-03-16 12:31:06 +00:00
def get_std(self) -> th.Tensor:
2019-11-25 12:19:33 +00:00
"""
Retrieve the standard deviation of the action distribution.
Only useful when using SDE.
2020-03-12 14:34:35 +00:00
It corresponds to ``th.exp(log_std)`` in the normal case,
but is slightly different when using ``expln`` function
2019-11-25 12:19:33 +00:00
(cf StateDependentNoiseDistribution doc).
:return: (th.Tensor)
"""
return self.action_dist.get_std(self.log_std)
2020-03-23 14:31:14 +00:00
def _get_latent(self, obs: th.Tensor) -> Tuple[th.Tensor, th.Tensor]:
2020-03-23 16:15:30 +00:00
features = self.extract_features(obs)
latent_pi = self.latent_pi(features)
latent_sde = self.sde_features_extractor(features) if self.sde_features_extractor is not None else latent_pi
return latent_pi, latent_sde
def evaluate_actions(self, obs: th.Tensor, actions: th.Tensor) -> Tuple[th.Tensor, th.Tensor]:
2019-11-22 16:24:47 +00:00
"""
Evaluate actions according to the current policy,
given the observations. Only useful when using SDE.
:param obs: (th.Tensor)
:param action: (th.Tensor)
:return: (th.Tensor, th.Tensor) log likelihood of taking those actions
and entropy of the action distribution.
"""
latent_pi, latent_sde = self._get_latent(obs)
mean_actions = self.mu(latent_pi)
distribution = self.action_dist.proba_distribution(mean_actions, self.log_std, latent_sde)
log_prob = distribution.log_prob(actions)
2019-11-12 17:37:13 +00:00
return log_prob, distribution.entropy()
2020-01-27 13:32:31 +00:00
def reset_noise(self) -> None:
2019-11-25 12:19:33 +00:00
"""
2019-11-26 14:26:12 +00:00
Sample new weights for the exploration matrix, when using SDE.
2019-11-25 12:19:33 +00:00
"""
self.action_dist.sample_weights(self.log_std)
2019-11-07 16:31:52 +00:00
2020-03-16 12:31:06 +00:00
def forward(self, obs: th.Tensor, deterministic: bool = True) -> th.Tensor:
2019-11-07 16:31:52 +00:00
if self.use_sde:
latent_pi, latent_sde = self._get_latent(obs)
2019-11-07 16:31:52 +00:00
if deterministic:
return self.mu(latent_pi)
noise = self.action_dist.get_noise(latent_sde)
2019-11-12 17:37:13 +00:00
if self.clip_noise is not None:
noise = th.clamp(noise, -self.clip_noise, self.clip_noise)
# TODO: Replace with squashing -> need to account for that in the sde update
# -> set squash_output=True in the action_dist?
# NOTE: the clipping is done in the rollout for now
return self.mu(latent_pi) + noise
2019-11-07 16:31:52 +00:00
else:
2020-03-23 16:15:30 +00:00
features = self.extract_features(obs)
return self.mu(features)
2019-09-05 15:29:41 +00:00
def _predict(self, observation: th.Tensor, deterministic: bool = False) -> th.Tensor:
return self.forward(observation, deterministic=deterministic)
2019-09-05 15:29:41 +00:00
2020-03-23 14:31:14 +00:00
class Critic(BasePolicy):
2019-11-22 16:24:47 +00:00
"""
Critic network for TD3,
in fact it represents the action-state value function (Q-value function)
2020-03-23 14:31:14 +00:00
:param observation_space: (gym.spaces.Space) Obervation space
:param action_space: (gym.spaces.Space) Action space
2019-11-22 16:24:47 +00:00
:param net_arch: ([int]) Network architecture
2020-03-23 16:15:30 +00:00
:param features_extractor: (nn.Module) Network to extract features
(a CNN when using images, a nn.Flatten() layer otherwise)
:param features_dim: (int) Number of features
2020-03-24 09:10:37 +00:00
:param activation_fn: (Type[nn.Module]) Activation function
2020-03-23 16:15:30 +00:00
:param normalize_images: (bool) Whether to normalize images or not,
dividing by 255.0 (True by default)
2019-11-22 16:24:47 +00:00
"""
2020-03-23 14:31:14 +00:00
def __init__(self, observation_space: gym.spaces.Space,
action_space: gym.spaces.Space,
net_arch: List[int],
2020-03-23 16:15:30 +00:00
features_extractor: nn.Module,
features_dim: int,
2020-03-24 09:10:37 +00:00
activation_fn: Type[nn.Module] = nn.ReLU,
2020-03-23 16:15:30 +00:00
normalize_images: bool = True):
super(Critic, self).__init__(observation_space, action_space,
features_extractor=features_extractor,
normalize_images=normalize_images)
2020-03-23 14:31:14 +00:00
action_dim = get_action_dim(self.action_space)
2019-09-05 15:29:41 +00:00
2020-03-23 16:15:30 +00:00
q1_net = create_mlp(features_dim + action_dim, 1, net_arch, activation_fn)
2019-09-12 09:19:06 +00:00
self.q1_net = nn.Sequential(*q1_net)
2020-03-23 16:15:30 +00:00
q2_net = create_mlp(features_dim + action_dim, 1, net_arch, activation_fn)
2019-09-12 09:19:06 +00:00
self.q2_net = nn.Sequential(*q2_net)
def forward(self, obs: th.Tensor, actions: th.Tensor) -> Tuple[th.Tensor, th.Tensor]:
2020-03-23 16:15:30 +00:00
features = self.extract_features(obs)
qvalue_input = th.cat([features, actions], dim=1)
2020-01-27 13:32:31 +00:00
return self.q1_net(qvalue_input), self.q2_net(qvalue_input)
2019-09-05 15:29:41 +00:00
def q1_forward(self, obs: th.Tensor, actions: th.Tensor) -> th.Tensor:
2020-03-23 16:15:30 +00:00
features = self.extract_features(obs)
return self.q1_net(th.cat([features, actions], dim=1))
2019-09-05 15:29:41 +00:00
2020-03-23 14:31:14 +00:00
class ValueFunction(BasePolicy):
2019-12-17 14:01:08 +00:00
"""
Value function for TD3 when doing on-policy exploration with SDE.
2020-03-23 14:31:14 +00:00
:param observation_space: (gym.spaces.Space) Obervation space
:param action_space: (gym.spaces.Space) Action space
2020-03-23 16:15:30 +00:00
:param features_extractor: (nn.Module) Network to extract features
(a CNN when using images, a nn.Flatten() layer otherwise)
:param features_dim: (int) Number of features
2020-03-16 12:31:06 +00:00
:param net_arch: (Optional[List[int]]) Network architecture
2020-03-24 09:10:37 +00:00
:param activation_fn: (Type[nn.Module]) Activation function
2020-03-23 16:15:30 +00:00
:param normalize_images: (bool) Whether to normalize images or not,
dividing by 255.0 (True by default)
2019-12-17 14:01:08 +00:00
"""
2020-03-23 14:31:14 +00:00
def __init__(self, observation_space: gym.spaces.Space,
action_space: gym.spaces.Space,
2020-03-23 16:15:30 +00:00
features_extractor: nn.Module,
features_dim: int,
2020-03-23 14:31:14 +00:00
net_arch: Optional[List[int]] = None,
2020-03-24 09:10:37 +00:00
activation_fn: Type[nn.Module] = nn.Tanh,
2020-03-23 16:15:30 +00:00
normalize_images: bool = True):
super(ValueFunction, self).__init__(observation_space, action_space,
features_extractor=features_extractor,
normalize_images=normalize_images)
2019-12-17 14:01:08 +00:00
if net_arch is None:
net_arch = [64, 64]
2020-03-23 16:15:30 +00:00
vf_net = create_mlp(features_dim, 1, net_arch, activation_fn)
2019-12-17 14:01:08 +00:00
self.vf_net = nn.Sequential(*vf_net)
2020-03-16 12:31:06 +00:00
def forward(self, obs: th.Tensor) -> th.Tensor:
2020-03-23 16:15:30 +00:00
features = self.extract_features(obs)
return self.vf_net(features)
2019-12-17 14:01:08 +00:00
2019-09-05 15:29:41 +00:00
class TD3Policy(BasePolicy):
2019-11-22 16:24:47 +00:00
"""
Policy class (with both actor and critic) for TD3.
:param observation_space: (gym.spaces.Space) Observation space
2019-12-02 13:27:38 +00:00
:param action_space: (gym.spaces.Space) Action space
:param lr_schedule: (Callable) Learning rate schedule (could be constant)
:param net_arch: (Optional[List[int]]) The specification of the policy and value networks.
2019-11-22 16:24:47 +00:00
:param device: (str or th.device) Device on which the code should run.
2020-03-24 09:10:37 +00:00
:param activation_fn: (Type[nn.Module]) Activation function
2019-11-22 16:24:47 +00:00
:param use_sde: (bool) Whether to use State Dependent Exploration or not
:param log_std_init: (float) Initial value for the log standard deviation
:param sde_net_arch: ([int]) Network architecture for extracting features
when using SDE. If None, the latent features from the policy will be used.
Pass an empty list to use the states as features.
2020-03-12 14:34:35 +00:00
:param use_expln: (bool) Use ``expln()`` function instead of ``exp()`` when using SDE to ensure
2020-01-08 16:04:28 +00:00
a positive standard deviation (cf paper). It allows to keep variance
2020-03-12 14:34:35 +00:00
above zero and prevent it from growing too fast. In practice, ``exp()`` is usually enough.
2020-03-23 16:15:30 +00:00
:param normalize_images: (bool) Whether to normalize images or not,
dividing by 255.0 (True by default)
2019-11-22 16:24:47 +00:00
"""
2020-03-16 12:31:06 +00:00
def __init__(self, observation_space: gym.spaces.Space,
action_space: gym.spaces.Space,
lr_schedule: Callable,
2020-03-16 12:31:06 +00:00
net_arch: Optional[List[int]] = None,
device: Union[th.device, str] = 'cpu',
2020-03-24 09:10:37 +00:00
activation_fn: Type[nn.Module] = nn.ReLU,
2020-03-16 12:31:06 +00:00
use_sde: bool = False,
log_std_init: float = -3,
clip_noise: Optional[float] = None,
lr_sde: float = 3e-4,
sde_net_arch: Optional[List[int]] = None,
2020-03-23 16:15:30 +00:00
use_expln: bool = False,
normalize_images: bool = True):
super(TD3Policy, self).__init__(observation_space, action_space, device, squash_output=True)
2019-10-10 11:47:13 +00:00
2019-11-22 16:24:47 +00:00
# Default network architecture, from the original paper
2019-10-10 11:47:13 +00:00
if net_arch is None:
net_arch = [400, 300]
2020-03-23 16:15:30 +00:00
# In the future, features_extractor will be replaced with a CNN
self.features_extractor = nn.Flatten()
self.features_dim = get_obs_dim(self.observation_space)
2019-09-05 15:29:41 +00:00
self.net_arch = net_arch
2019-09-09 14:45:55 +00:00
self.activation_fn = activation_fn
2019-09-10 11:07:15 +00:00
self.net_args = {
2020-03-23 14:31:14 +00:00
'observation_space': self.observation_space,
'action_space': self.action_space,
2020-03-23 16:15:30 +00:00
'features_extractor': self.features_extractor,
'features_dim': self.features_dim,
2019-09-10 11:07:15 +00:00
'net_arch': self.net_arch,
2020-03-23 16:15:30 +00:00
'activation_fn': self.activation_fn,
'normalize_images': normalize_images
2019-09-10 11:07:15 +00:00
}
2019-11-07 16:31:52 +00:00
self.actor_kwargs = self.net_args.copy()
sde_kwargs = {
'use_sde': use_sde,
'log_std_init': log_std_init,
'clip_noise': clip_noise,
'lr_sde': lr_sde,
2020-01-08 16:04:28 +00:00
'sde_net_arch': sde_net_arch,
'use_expln': use_expln
}
self.actor_kwargs.update(sde_kwargs)
2019-11-07 16:31:52 +00:00
2019-09-09 14:45:55 +00:00
self.actor, self.actor_target = None, None
self.critic, self.critic_target = None, None
2019-12-17 14:01:08 +00:00
# For SDE only
2019-11-07 16:31:52 +00:00
self.use_sde = use_sde
2019-12-17 14:01:08 +00:00
self.vf_net = None
2019-11-07 16:31:52 +00:00
self.log_std_init = log_std_init
self._build(lr_schedule)
2019-09-05 15:29:41 +00:00
def _build(self, lr_schedule: Callable) -> None:
2019-09-05 15:29:41 +00:00
self.actor = self.make_actor()
self.actor_target = self.make_actor()
self.actor_target.load_state_dict(self.actor.state_dict())
self.actor.optimizer = th.optim.Adam(self.actor.parameters(), lr=lr_schedule(1))
2019-09-05 15:29:41 +00:00
self.critic = self.make_critic()
self.critic_target = self.make_critic()
self.critic_target.load_state_dict(self.critic.state_dict())
self.critic.optimizer = th.optim.Adam(self.critic.parameters(), lr=lr_schedule(1))
2019-09-05 15:29:41 +00:00
2019-12-17 14:01:08 +00:00
if self.use_sde:
2020-03-23 16:15:30 +00:00
self.vf_net = ValueFunction(self.observation_space, self.action_space,
features_extractor=self.features_extractor,
features_dim=self.features_dim)
2020-03-16 12:31:06 +00:00
self.actor.sde_optimizer.add_param_group({'params': self.vf_net.parameters()}) # pytype: disable=attribute-error
2019-12-17 14:01:08 +00:00
2020-03-16 12:31:06 +00:00
def reset_noise(self) -> None:
2019-11-07 16:31:52 +00:00
return self.actor.reset_noise()
2020-03-16 12:31:06 +00:00
def make_actor(self) -> Actor:
2019-11-07 16:31:52 +00:00
return Actor(**self.actor_kwargs).to(self.device)
2019-09-05 15:29:41 +00:00
2020-03-16 12:31:06 +00:00
def make_critic(self) -> Critic:
2019-09-10 11:07:15 +00:00
return Critic(**self.net_args).to(self.device)
2019-09-06 08:44:55 +00:00
2020-03-16 12:31:06 +00:00
def forward(self, observation: th.Tensor, deterministic: bool = False):
return self._predict(observation, deterministic=deterministic)
2019-09-24 12:53:03 +00:00
def _predict(self, observation: th.Tensor, deterministic: bool = False) -> th.Tensor:
2020-03-16 12:31:06 +00:00
return self.actor(observation, deterministic=deterministic)
2020-02-12 14:25:05 +00:00
2019-09-21 15:17:09 +00:00
2019-09-06 08:44:55 +00:00
MlpPolicy = TD3Policy
register_policy("MlpPolicy", MlpPolicy)