Created
August 8, 2020 19:25
-
-
Save ucalyptus2/dbf7be4b8531abba84639b02c8d9d433 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#NOTE: This must be the first call in order to work properly! | |
from deoldify import device | |
from deoldify.device_id import DeviceId | |
#choices: CPU, GPU0...GPU7 | |
device.set(device=DeviceId.GPU0) | |
import torch | |
if not torch.cuda.is_available(): | |
print('GPU not available.') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment