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
以chatglm为例,model.chat()每次可能生成结果不一样,建议改成贪婪解码可以生成稳定的答案 generation_kwargs = { "min_length": 0, "max_new_tokens": 512, 'do_sample':False, 'top_p':0.9, 'temperature':0.8, }
另外,model或许应该model.eval()?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
以chatglm为例,model.chat()每次可能生成结果不一样,建议改成贪婪解码可以生成稳定的答案
generation_kwargs = {
"min_length": 0,
"max_new_tokens": 512,
'do_sample':False,
'top_p':0.9,
'temperature':0.8,
}
另外,model或许应该model.eval()?
The text was updated successfully, but these errors were encountered: