(self, observation_spec)
| 711 | # is of type ``Composite`` |
| 712 | @_apply_to_composite |
| 713 | def transform_observation_spec(self, observation_spec): |
| 714 | return BoundedTensorSpec( |
| 715 | low=-1, |
| 716 | high=1, |
| 717 | shape=observation_spec.shape, |
| 718 | dtype=observation_spec.dtype, |
| 719 | device=observation_spec.device, |
| 720 | ) |
| 721 | |
| 722 | |
| 723 | t_sin = SinTransform(in_keys=["th"], out_keys=["sin"]) |
nothing calls this directly
no outgoing calls
no test coverage detected