The replay storage.
(self)
| 160 | self._checkpointing_config = checkpointing_config |
| 161 | |
| 162 | def replay(self): |
| 163 | """The replay storage.""" |
| 164 | dummy_seed = 1 |
| 165 | environment_spec = ( |
| 166 | self._environment_spec or |
| 167 | specs.make_environment_spec(self._environment_factory(dummy_seed))) |
| 168 | return self._builder.make_replay_tables(environment_spec) |
| 169 | |
| 170 | def counter(self): |
| 171 | kwargs = {} |
nothing calls this directly
no test coverage detected