(self, obs: torch.Tensor)
| 674 | |
| 675 | class SinTransform(Transform): |
| 676 | def _apply_transform(self, obs: torch.Tensor) -> None: |
| 677 | return obs.sin() |
| 678 | |
| 679 | # The transform must also modify the data at reset time |
| 680 | def _reset( |
nothing calls this directly
no outgoing calls
no test coverage detected