Die Suche ergab 1 Treffer

von MLStudent94
Samstag 19. Dezember 2020, 13:22
Forum: Allgemeine Fragen
Thema: What exactly is Keras loss in history
Antworten: 0
Zugriffe: 1355

What exactly is Keras loss in history

Hello AI-Friends,

I am using a callback function to calculate train and test error after each epoch end by calling model.evaluate() . However if I compare my calculated train loss from model.evaluate(x_train, y_train) it is different from the loss saved in history.history['loss']. The calculated ...