One major issue most young data scientists, enthusiasts ask me is how to find the GPU IDs to map in the Pytorch
code?
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
This can be easily found with this piece of code down below.
This will produce the below output:
or
This will produce the below output
If you get an error of
pycuda
module not found, you can simply do apip
install.