(
self, tensordict: TensorDictBase, tensordict_reset: TensorDictBase
)
| 678 | |
| 679 | # The transform must also modify the data at reset time |
| 680 | def _reset( |
| 681 | self, tensordict: TensorDictBase, tensordict_reset: TensorDictBase |
| 682 | ) -> TensorDictBase: |
| 683 | return self._call(tensordict_reset) |
| 684 | |
| 685 | # _apply_to_composite will execute the observation spec transform across all |
| 686 | # in_keys/out_keys pairs and write the result in the observation_spec which |
nothing calls this directly
no outgoing calls
no test coverage detected