(self)
| 121 | class VecTaskPython(VecTask): |
| 122 | |
| 123 | def get_state(self): |
| 124 | return torch.clamp(self.task.states_buf, -self.clip_obs, self.clip_obs).to(self.rl_device) |
| 125 | |
| 126 | def step(self, actions): |
| 127 | actions_tensor = torch.clamp(actions, -self.clip_actions, self.clip_actions) |