(self)
| 589 | self.start() |
| 590 | |
| 591 | def start(self): |
| 592 | self.last_iteration = self.step.numpy() |
| 593 | self.last_time = time.time() |
| 594 | |
| 595 | def steps_per_second(self, restart=True): |
| 596 | value = ((self.step.numpy() - self.last_iteration) / |
no outgoing calls