(self, observation_spec)
| 687 | # is of type ``Composite`` |
| 688 | @_apply_to_composite |
| 689 | def transform_observation_spec(self, observation_spec): |
| 690 | return BoundedTensorSpec( |
| 691 | low=-1, |
| 692 | high=1, |
| 693 | shape=observation_spec.shape, |
| 694 | dtype=observation_spec.dtype, |
| 695 | device=observation_spec.device, |
| 696 | ) |
| 697 | |
| 698 | |
| 699 | class CosTransform(Transform): |
nothing calls this directly
no outgoing calls
no test coverage detected