Store real inputs Args: real_inputs: The real inputs to store (can be tensors, lists, tuples, etc.)
(self, real_inputs: Any)
| 152 | return stored_value |
| 153 | |
| 154 | def put(self, real_inputs: Any) -> None: |
| 155 | """ |
| 156 | Store real inputs |
| 157 | |
| 158 | Args: |
| 159 | real_inputs: The real inputs to store (can be tensors, lists, tuples, etc.) |
| 160 | """ |
| 161 | stored_inputs = self._store_value(real_inputs) |
| 162 | self._stored_inputs = stored_inputs |
| 163 | self._has_data = True |
| 164 | |
| 165 | def get(self) -> Any: |
| 166 | """ |