We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The num_epochs configuration parameter, intended to activate when max_steps=0, is currently causing model training to break.
num_epochs
max_steps=0
Need to investigate the underlying cause and implement a fix.
The text was updated successfully, but these errors were encountered:
I think this is due an incompatibility with streaming=True, where the length of the epoch is not known in advance.
streaming=True
Sorry, something went wrong.
Fix: #90
You need to have an estimate of the dataset size ahead of time for this to work.
liPatrick
No branches or pull requests
The
num_epochs
configuration parameter, intended to activate whenmax_steps=0
, is currently causing model training to break.Need to investigate the underlying cause and implement a fix.
The text was updated successfully, but these errors were encountered: