(self, obs, obs_key="actor_obs", **kwargs)
| 161 | return actions_mean |
| 162 | |
| 163 | def evaluate(self, obs, obs_key="actor_obs", **kwargs): |
| 164 | motion_embedding = self.actor.motion_encoding(obs["future_motion_targets"]) |
| 165 | critic_obs = torch.cat([obs[obs_key], obs["priv_obs"], motion_embedding], dim=-1) |
| 166 | return self.critic(critic_obs) |
nothing calls this directly
no test coverage detected