def should_abort()

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


    def should_abort(self) -> bool:
        if not self.current_epoch_duration or not self.mean_epoch_time:
            return False
        return self.current_epoch_duration > (self.mean_epoch_time * self.abort_if_epoch_time_exceeds_multiple)