Source code for embodichain.agents.rl.models.actor_only
# ----------------------------------------------------------------------------
# Copyright (c) 2021-2026 DexForce Technology Co., Ltd.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------
from __future__ import annotations
from typing import Tuple
import torch
import torch.nn as nn
from torch.distributions.normal import Normal
from .policy import Policy
[docs]
class ActorOnly(Policy):
"""Actor-only policy for algorithms that do not use a value function (e.g., GRPO).
Same interface as ActorCritic: get_action and evaluate_actions return (action, log_prob, value),
but value is always zeros since no critic is used.
"""
[docs]
def __init__(
self,
obs_space,
action_space,
device: torch.device,
actor: nn.Module,
):
super().__init__()
self.obs_dim = obs_space.shape[-1]
self.action_dim = action_space.shape[-1]
self.device = device
self.actor = actor
self.actor.to(self.device)
self.log_std = nn.Parameter(torch.zeros(self.action_dim, device=self.device))
self.log_std_min = -5.0
self.log_std_max = 2.0
[docs]
@torch.no_grad()
def get_action(
self, obs: torch.Tensor, deterministic: bool = False
) -> Tuple[torch.Tensor, torch.Tensor, torch.Tensor]:
mean = self.actor(obs)
log_std = self.log_std.clamp(self.log_std_min, self.log_std_max)
std = log_std.exp().expand(mean.shape[0], -1)
dist = Normal(mean, std)
action = mean if deterministic else dist.sample()
log_prob = dist.log_prob(action).sum(dim=-1)
value = torch.zeros(obs.shape[0], device=self.device, dtype=obs.dtype)
return action, log_prob, value
[docs]
@torch.no_grad()
def get_value(self, obs: torch.Tensor) -> torch.Tensor:
return torch.zeros(obs.shape[0], device=self.device, dtype=obs.dtype)
[docs]
def evaluate_actions(
self, obs: torch.Tensor, actions: torch.Tensor
) -> Tuple[torch.Tensor, torch.Tensor, torch.Tensor]:
mean = self.actor(obs)
log_std = self.log_std.clamp(self.log_std_min, self.log_std_max)
std = log_std.exp().expand(mean.shape[0], -1)
dist = Normal(mean, std)
log_prob = dist.log_prob(actions).sum(dim=-1)
entropy = dist.entropy().sum(dim=-1)
value = torch.zeros(obs.shape[0], device=self.device, dtype=obs.dtype)
return log_prob, entropy, value