Panagiotis Nezis

Results 1 comments of Panagiotis Nezis

@gojomo setting `model.running_training_loss to 0.0` at an epoch's end seems to affect the training. Sample callback: ```python class LossReportCallback(CallbackAny2Vec): def __init__(self, reset_loss=False): self.epoch = 1 self.previous_cumulative_loss = 0 self.reset_loss =...