(self, obs: torch.Tensor)
| 698 | |
| 699 | class CosTransform(Transform): |
| 700 | def _apply_transform(self, obs: torch.Tensor) -> None: |
| 701 | return obs.cos() |
| 702 | |
| 703 | # The transform must also modify the data at reset time |
| 704 | def _reset( |
nothing calls this directly
no outgoing calls
no test coverage detected