You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The MacBooks are more than capable for running DL model on device now with GPU, so the notebooks should indeed also have support these devices as well.
Instead of having the following line , found in all the .ipynb files
device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
Adding this will also help us bypass the limitations that have been put on training time , when trying to train on colab. As the T4 GPU on colab is only allotted for a very limited time.
The text was updated successfully, but these errors were encountered:
The MacBooks are more than capable for running DL model on device now with GPU, so the notebooks should indeed also have support these devices as well.
Instead of having the following line , found in all the .ipynb files
device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
We should replace it with ,
Adding this will also help us bypass the limitations that have been put on training time , when trying to train on colab. As the T4 GPU on colab is only allotted for a very limited time.
The text was updated successfully, but these errors were encountered: