What is the difference between CSVLogger and model.evaluate()?
I have been using Keras/TF's CSVLogger
in order to save the training and validation accuracies. Then I was plotting those data to check the trajectory of training and validation accuracy or loss.
Yesterday, I read this link.
Here, they used model.evaluate()
to plot the accuracy metric.
What is the difference between these two approaches?
Comments
Post a Comment