A2C playing BreakoutNoFrameskip-v4 from https://github.com/sgoodfriend/rl-algo-impls/tree/2067e21d62fff5db60168687e7d9e89019a8bfc0
32c4441
| from abc import ABC | |
| class Callback(ABC): | |
| def __init__(self) -> None: | |
| super().__init__() | |
| self.timesteps_elapsed = 0 | |
| def on_step(self, timesteps_elapsed: int = 1) -> bool: | |
| self.timesteps_elapsed += timesteps_elapsed | |
| return True | |