What Is The 90/90 Shown In Keras Output Data While Training The Model?
90/90 - 0s - loss: 0.0098 - accuracy: 0.0011 This is my output while training my model . what is that 90/90 ? if it is the number of samples passed , My data set has 1001 rows and
Solution 1:
You have a validation split of 0.1, so training has 900 samples. Thus, with batch_size=10
, 90 batches are there. That is the reason of 90/90.
Post a Comment for "What Is The 90/90 Shown In Keras Output Data While Training The Model?"