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
Link: https://www.linode.com/docs/guides/pytorch-installation-ubuntu-2004/
When running the steps in 02 D Test your PyTorch Installation on ubuntu 2010 the provided examples don't function as expected when installed via pip:
print (torch.cuda.is_available) <function is_available at 0x7f49cd9ef6d0> print (torch.cuda.device_count) <functools._lru_cache_wrapper object at 0x7f49bf2bd430>
Python3 expects () to actually execute the functions:
print (torch.cuda.is_available()) True print (torch.cuda.device_count()) 1
Update the docs to include the ().
The text was updated successfully, but these errors were encountered:
Thank you @Learath for raising the issue. This has now been fixed in #6738.
Sorry, something went wrong.
Rajakavitha1
Successfully merging a pull request may close this issue.
Link: https://www.linode.com/docs/guides/pytorch-installation-ubuntu-2004/
Issue
When running the steps in 02 D Test your PyTorch Installation on ubuntu 2010 the provided examples don't function as expected when installed via pip:
Python3 expects () to actually execute the functions:
Suggested Fix
Update the docs to include the ().
The text was updated successfully, but these errors were encountered: