I am fitting an ANN using Keras. As I don't trust the loss function output, I would like to see, what are the intermediate values that are compared to the target ones in order to calculate the loss after every epoch.
history = model.fit(X, Y, epochs=epoc,batch_size=bs)
scores = model.evaluate(X, Y, verbose=0)
As an alternative, could you please tell me, is there a way to get the values for model.evaluate(x,y), because once again it gives only the score.
Thank you in advance for your answer!