-
Hi, i am a little confused how to set the number of 'number of steps', is it same as 'number of epoch'? For example, if i have 10000 training data, and i use batch_size=1 which should mean each training data is a batch. So now i have 100000 batches, can i choose 'number of step' to be larger than 10000. If i don't consider the calculation cost, is this value the bigger, the better? Thanks for help. |
Beta Was this translation helpful? Give feedback.
Answered by
njzjz
Apr 10, 2024
Replies: 1 comment
-
n_step * batch_size = n_epoch * n_data
Yes, more is better. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
kaijiz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
n_step * batch_size = n_epoch * n_data
Yes, more is better.