def mean_epoch_time()

in realbook/callbacks/debugging.py [0:0]


    def mean_epoch_time(self) -> Optional[float]:
        if not self.epoch_times:
            return None
        return sum(self.epoch_times) / len(self.epoch_times)