deepfake-detection / preprocessing /import torch.py
ChitranshSahu's picture
First Commit
7a77962
raw
history blame contribute delete
114 Bytes
import torch
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
print("Using device:", device)