2019-09-05 15:29:41 +00:00
|
|
|
import torch as th
|
|
|
|
|
import torch.nn as nn
|
2019-11-07 16:31:52 +00:00
|
|
|
from torch.distributions import Normal
|
2019-09-05 15:29:41 +00:00
|
|
|
|
2019-09-18 11:10:27 +00:00
|
|
|
from torchy_baselines.common.policies import BasePolicy, register_policy, create_mlp, BaseNetwork
|
2019-09-06 12:01:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class Actor(BaseNetwork):
|
2019-11-22 16:24:47 +00:00
|
|
|
"""
|
|
|
|
|
Actor network (policy) for TD3.
|
|
|
|
|
|
|
|
|
|
:param obs_dim: (int) Dimension of the observation
|
|
|
|
|
:param action_dim: (int) Dimension of the action space
|
|
|
|
|
:param net_arch: ([int]) Network architecture
|
|
|
|
|
:param activation_fn: (nn.Module) Activation function
|
|
|
|
|
: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
|
|
|
|
|
for the std instead of only (n_features,)
|
|
|
|
|
"""
|
2019-11-07 16:31:52 +00:00
|
|
|
def __init__(self, obs_dim, action_dim, net_arch, activation_fn=nn.ReLU,
|
2019-11-13 12:02:37 +00:00
|
|
|
use_sde=False, log_std_init=-2, clip_noise=None,
|
|
|
|
|
lr_sde=3e-4, full_std=False):
|
2019-09-05 15:29:41 +00:00
|
|
|
super(Actor, self).__init__()
|
|
|
|
|
|
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
|
2019-11-13 12:02:37 +00:00
|
|
|
self.action_dim = action_dim
|
|
|
|
|
self.full_std = full_std
|
2019-11-07 16:31:52 +00:00
|
|
|
|
|
|
|
|
if use_sde:
|
|
|
|
|
latent_dim = net_arch[-1]
|
|
|
|
|
latent_pi = create_mlp(obs_dim, -1, net_arch, activation_fn, squash_out=False)
|
|
|
|
|
self.latent_pi = nn.Sequential(*latent_pi)
|
2019-11-13 12:02:37 +00:00
|
|
|
if full_std:
|
2019-11-22 14:04:34 +00:00
|
|
|
self.log_std = nn.Parameter(th.ones(latent_dim, action_dim) * log_std_init, requires_grad=True)
|
2019-11-13 12:02:37 +00:00
|
|
|
else:
|
|
|
|
|
# Reduce the number of parameters:
|
2019-11-22 14:04:34 +00:00
|
|
|
self.log_std = nn.Parameter(th.ones(latent_dim, 1) * log_std_init, requires_grad=True)
|
2019-11-13 12:02:37 +00:00
|
|
|
|
|
|
|
|
self.latent_dim = latent_dim
|
2019-11-07 16:31:52 +00:00
|
|
|
self.actor_net = nn.Sequential(nn.Linear(net_arch[-1], action_dim), nn.Tanh())
|
|
|
|
|
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:
|
|
|
|
|
actor_net = create_mlp(obs_dim, action_dim, net_arch, activation_fn, squash_out=True)
|
|
|
|
|
self.actor_net = nn.Sequential(*actor_net)
|
|
|
|
|
|
2019-11-13 12:02:37 +00:00
|
|
|
def get_log_std(self):
|
|
|
|
|
if self.full_std:
|
|
|
|
|
return self.log_std
|
|
|
|
|
# Reduce the number of parameters:
|
2019-11-13 13:38:18 +00:00
|
|
|
return th.ones((self.latent_dim, self.action_dim)).to(self.log_std.device) * self.log_std
|
2019-11-13 12:02:37 +00:00
|
|
|
|
2019-11-22 14:04:34 +00:00
|
|
|
def evaluate_actions(self, obs, action):
|
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.
|
|
|
|
|
"""
|
2019-11-12 17:37:13 +00:00
|
|
|
with th.no_grad():
|
|
|
|
|
latent_pi = self.latent_pi(obs)
|
|
|
|
|
mean_actions = self.actor_net(latent_pi)
|
2019-11-13 12:02:37 +00:00
|
|
|
|
|
|
|
|
variance = th.mm(latent_pi ** 2, th.exp(self.get_log_std()) ** 2)
|
|
|
|
|
distribution = Normal(mean_actions, th.sqrt(variance + 1e-5))
|
2019-11-12 17:37:13 +00:00
|
|
|
log_prob = distribution.log_prob(action)
|
|
|
|
|
if len(log_prob.shape) > 1:
|
|
|
|
|
log_prob = log_prob.sum(axis=1)
|
|
|
|
|
else:
|
|
|
|
|
log_prob = log_prob.sum()
|
|
|
|
|
return log_prob, distribution.entropy()
|
|
|
|
|
|
2019-11-07 16:31:52 +00:00
|
|
|
def reset_noise(self):
|
2019-11-13 12:02:37 +00:00
|
|
|
self.weights_dist = Normal(th.zeros_like(self.get_log_std()), th.exp(self.get_log_std()))
|
2019-11-07 16:31:52 +00:00
|
|
|
self.exploration_mat = self.weights_dist.rsample()
|
|
|
|
|
|
|
|
|
|
def forward(self, obs, deterministic=True):
|
|
|
|
|
if self.use_sde:
|
|
|
|
|
latent_pi = self.latent_pi(obs)
|
|
|
|
|
if deterministic:
|
|
|
|
|
return self.actor_net(latent_pi)
|
|
|
|
|
noise = th.mm(latent_pi.detach(), self.exploration_mat)
|
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)
|
2019-11-22 14:04:34 +00:00
|
|
|
# TODO: Replace with squashing -> need to account for that in the sde update
|
|
|
|
|
# return th.clamp(self.actor_net(latent_pi) + noise, -1, 1)
|
|
|
|
|
# NOTE: the clipping is done in the rollout for now
|
|
|
|
|
return self.actor_net(latent_pi) + noise
|
2019-11-07 16:31:52 +00:00
|
|
|
else:
|
|
|
|
|
return self.actor_net(obs)
|
2019-09-05 15:29:41 +00:00
|
|
|
|
|
|
|
|
|
2019-09-06 12:01:10 +00:00
|
|
|
class Critic(BaseNetwork):
|
2019-11-22 16:24:47 +00:00
|
|
|
"""
|
|
|
|
|
Critic network for TD3,
|
|
|
|
|
in fact it represents the action-state value function (Q-value function)
|
|
|
|
|
|
|
|
|
|
:param obs_dim: (int) Dimension of the observation
|
|
|
|
|
:param action_dim: (int) Dimension of the action space
|
|
|
|
|
:param net_arch: ([int]) Network architecture
|
|
|
|
|
:param activation_fn: (nn.Module) Activation function
|
|
|
|
|
"""
|
2019-09-24 12:53:03 +00:00
|
|
|
def __init__(self, obs_dim, action_dim,
|
2019-10-10 11:47:13 +00:00
|
|
|
net_arch, activation_fn=nn.ReLU):
|
2019-09-05 15:29:41 +00:00
|
|
|
super(Critic, self).__init__()
|
|
|
|
|
|
2019-09-24 12:53:03 +00:00
|
|
|
q1_net = create_mlp(obs_dim + action_dim, 1, net_arch, activation_fn)
|
2019-09-12 09:19:06 +00:00
|
|
|
self.q1_net = nn.Sequential(*q1_net)
|
|
|
|
|
|
2019-09-24 12:53:03 +00:00
|
|
|
q2_net = create_mlp(obs_dim + action_dim, 1, net_arch, activation_fn)
|
2019-09-12 09:19:06 +00:00
|
|
|
self.q2_net = nn.Sequential(*q2_net)
|
|
|
|
|
|
|
|
|
|
self.q_networks = [self.q1_net, self.q2_net]
|
2019-09-05 15:29:41 +00:00
|
|
|
|
|
|
|
|
def forward(self, obs, action):
|
|
|
|
|
qvalue_input = th.cat([obs, action], dim=1)
|
2019-09-12 09:19:06 +00:00
|
|
|
return [q_net(qvalue_input) for q_net in self.q_networks]
|
2019-09-05 15:29:41 +00:00
|
|
|
|
|
|
|
|
def q1_forward(self, obs, action):
|
2019-09-12 09:19:06 +00:00
|
|
|
return self.q_networks[0](th.cat([obs, action], dim=1))
|
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
|
|
|
|
|
:param action_dim: (gym.spaces.Space) Action space
|
|
|
|
|
:param learning_rate: (callable) Learning rate schedule (could be constant)
|
|
|
|
|
:param net_arch: ([int or dict]) The specification of the policy and value networks.
|
|
|
|
|
:param device: (str or th.device) Device on which the code should run.
|
|
|
|
|
:param activation_fn: (nn.Module) Activation function
|
|
|
|
|
:param use_sde: (bool) Whether to use State Dependent Exploration or not
|
|
|
|
|
:param log_std_init: (float) Initial value for the log standard deviation
|
|
|
|
|
"""
|
2019-09-05 15:29:41 +00:00
|
|
|
def __init__(self, observation_space, action_space,
|
2019-10-28 15:47:13 +00:00
|
|
|
learning_rate, net_arch=None, device='cpu',
|
2019-11-12 17:38:42 +00:00
|
|
|
activation_fn=nn.ReLU, use_sde=False, log_std_init=-2,
|
|
|
|
|
clip_noise=None, lr_sde=3e-4):
|
2019-09-05 15:29:41 +00:00
|
|
|
super(TD3Policy, self).__init__(observation_space, action_space, device)
|
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]
|
|
|
|
|
|
2019-09-24 12:53:03 +00:00
|
|
|
self.obs_dim = self.observation_space.shape[0]
|
2019-09-05 15:29:41 +00:00
|
|
|
self.action_dim = self.action_space.shape[0]
|
|
|
|
|
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 = {
|
2019-09-24 12:53:03 +00:00
|
|
|
'obs_dim': self.obs_dim,
|
2019-09-10 11:07:15 +00:00
|
|
|
'action_dim': self.action_dim,
|
|
|
|
|
'net_arch': self.net_arch,
|
|
|
|
|
'activation_fn': self.activation_fn
|
|
|
|
|
}
|
2019-11-07 16:31:52 +00:00
|
|
|
self.actor_kwargs = self.net_args.copy()
|
|
|
|
|
self.actor_kwargs['use_sde'] = use_sde
|
|
|
|
|
self.actor_kwargs['log_std_init'] = log_std_init
|
2019-11-08 12:17:38 +00:00
|
|
|
self.actor_kwargs['clip_noise'] = clip_noise
|
2019-11-12 17:38:42 +00:00
|
|
|
self.actor_kwargs['lr_sde'] = lr_sde
|
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-11-07 16:31:52 +00:00
|
|
|
self.use_sde = use_sde
|
|
|
|
|
self.log_std_init = log_std_init
|
2019-09-05 15:29:41 +00:00
|
|
|
self._build(learning_rate)
|
|
|
|
|
|
|
|
|
|
def _build(self, learning_rate):
|
|
|
|
|
self.actor = self.make_actor()
|
|
|
|
|
self.actor_target = self.make_actor()
|
|
|
|
|
self.actor_target.load_state_dict(self.actor.state_dict())
|
2019-10-28 15:47:13 +00:00
|
|
|
self.actor.optimizer = th.optim.Adam(self.actor.parameters(), lr=learning_rate(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())
|
2019-10-28 15:47:13 +00:00
|
|
|
self.critic.optimizer = th.optim.Adam(self.critic.parameters(), lr=learning_rate(1))
|
2019-09-05 15:29:41 +00:00
|
|
|
|
2019-11-07 16:31:52 +00:00
|
|
|
def reset_noise(self):
|
|
|
|
|
return self.actor.reset_noise()
|
|
|
|
|
|
2019-09-05 15:29:41 +00:00
|
|
|
def make_actor(self):
|
2019-11-07 16:31:52 +00:00
|
|
|
return Actor(**self.actor_kwargs).to(self.device)
|
2019-09-05 15:29:41 +00:00
|
|
|
|
|
|
|
|
def make_critic(self):
|
2019-09-10 11:07:15 +00:00
|
|
|
return Critic(**self.net_args).to(self.device)
|
2019-09-06 08:44:55 +00:00
|
|
|
|
2019-11-07 16:31:52 +00:00
|
|
|
def forward(self, obs, deterministic=True):
|
|
|
|
|
return self.actor(obs, deterministic=deterministic)
|
2019-09-24 12:53:03 +00:00
|
|
|
|
2019-09-21 15:17:09 +00:00
|
|
|
|
2019-09-06 08:44:55 +00:00
|
|
|
MlpPolicy = TD3Policy
|
|
|
|
|
|
|
|
|
|
register_policy("MlpPolicy", MlpPolicy)
|