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
Currently pytest tests/models/gpt_neo/test_gpt_neo.py will failed with at this part
pytest tests/models/gpt_neo/test_gpt_neo.py
> print(probs) TorchTensor([[nan, nan, nan, ..., nan, nan, nan]], dtype=torch.bfloat16) > torch.multinomial(probs, num_samples=1).squeeze(1) RuntimeError: probability tensor contains either `inf`, `nan` or element < 0
It's because cannot sampling nan value, and I think it is the accuracy issue, so lower priority it until we move on the accuracy debug
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently
pytest tests/models/gpt_neo/test_gpt_neo.py
will failed with at this partIt's because cannot sampling nan value, and I think it is the accuracy issue, so lower priority it until we move on the accuracy debug
The text was updated successfully, but these errors were encountered: