Replies: 2 comments
-
Follow up: if I stop and resume from a saved state, does the resumed state start at the same point in the dataset or does it start over? |
Beta Was this translation helpful? Give feedback.
0 replies
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've tried to figure this one out from documentation and other issues but haven't had any luck so far, but how exactly does this library work through training data, especially re: dataset repeats?
Does it move through training data sequentially or "randomly"? If dataset repeats is set, how does it repeat the dataset?
Assuming it's sequential, I'd imagine dataset repeats = 2 works like this:
1,2,3,4,5,6,7,8,9,10,1,2,3,4,5,6,7,8,9,10
Or does it work like so:
1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10
Or, if I'm thinking about this all wrong, I'd love to know how I should be thinking about this.
Beta Was this translation helpful? Give feedback.
All reactions