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
In the scripts for hf, I found the max_token of .generate() is set as a fixed number: 1024
= model.generate(model_input, max_length=1024, do_sample=False,
But this does not make sense for much larger max_input_length.
Should the max_new_token argument be set as 1024 rather than max_length?
The text was updated successfully, but these errors were encountered:
Hi @Mooler0410.
You are right, I changed it to use max_new_tokens.
Thanks!
Sorry, something went wrong.
No branches or pull requests
In the scripts for hf, I found the max_token of .generate() is set as a fixed number: 1024
= model.generate(model_input,
max_length=1024,
do_sample=False,
But this does not make sense for much larger max_input_length.
Should the max_new_token argument be set as 1024 rather than max_length?
The text was updated successfully, but these errors were encountered: