I'm having trouble training a Tensorflow model

I am a beginner in TensorFlow. I have 9090 training data and 3897 test data. However, its only using 37 data to train the model.

enter image description here

I followed the same steps in the tensorflow training I followed. i checked it 2 times but I couldn’t find the error

>Solution :

You are using your full data. Batch size is 250, so it is 37 batches of data (9090 / 250 = 36.36 ~ 37).

Leave a Reply