GPU error #480
Unanswered
Duwimpuhwe
asked this question in
Q&A
GPU error
#480
Replies: 1 comment 2 replies
-
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
device="cuda" if torch.cuda.is_available else "cpu"
Create an instance of model_1
torch.manual_seed(42)
model_1=FashionMNISTModelV1(input_shape=784, #this the out of the flatten after our 28*28 image goes in
hidden_units=10,
output_shape=10).to(device) # Send to the GPU if it's available
model_1
Error
RuntimeError: Found no NVIDIA driver on your system. Please check that you have an NVIDIA GPU and installed a driver from http://www.nvidia.com/Download/index.aspx
how can I fix this?
Beta Was this translation helpful? Give feedback.
All reactions