For Tensorflow Keras Neural Networks I know they use the word ‘loss’ to mean cost function. In the assignment I noticed that after training the NN on 1000 epochs it outputs a loss of 0.0172
But when comparing the errors of the training set to the cv set, it says the training error’s value is 0.003
Why does it not say it is 0.0172? Because after it finished training that’s what the loss value was according to the first image.
Is it perhaps using some other metric when outputting the error value?
Thanks!