I am a bit confused about what value I should be expecting from Keras's evaluate
function.
Here is the evaluate
function definition from Keras documentation:
evaluate(self, x=None, y=None, batch_size=None,
verbose=1, sample_weight=None, steps=None)
And here is the short description from the same page:
Returns the loss value & metrics values for the model in test mode.
If I have a large cross validation dataset which kind of requires me to call the evaluate
function several times, does the evaluate
function remember previous calls? Or does it only return, say, the loss value for the given mini-batch each time?