Closed arpit601 closed 7 years ago
@arpit601 arpit601 commented about 1 hour ago Lets say I put 1000 files for training and give batch size as 10 , then after running it for 1000 global steps what should be the number of epochs ?
well epochs = number of iterations through dataset therefore
examples_seen = batch_size * steps epochs = examples_seen / training_set_size 10 * 1000 / 1000 = 10 epochs
Thanks
@arpit601 arpit601 commented about 1 hour ago Lets say I put 1000 files for training and give batch size as 10 , then after running it for 1000 global steps what should be the number of epochs ?