louiskirsch / speechT

An opensource speech-to-text software written in tensorflow
Apache License 2.0
158 stars 36 forks source link

Calculating epochs? #5

Closed arpit601 closed 7 years ago

arpit601 commented 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 ?

louiskirsch commented 7 years ago

well epochs = number of iterations through dataset therefore

examples_seen = batch_size * steps
epochs = examples_seen / training_set_size
10 * 1000 / 1000 = 10 epochs
arpit601 commented 7 years ago

Thanks