fork-detect-fake / deepfakeconfig.py
wyyadd's picture
Duplicate from not-lain/deepfake
402b016 verified
raw
history blame
No virus
260 Bytes
from transformers import PretrainedConfig
import torch
class DeepFakeConfig(PretrainedConfig):
model_type = "ResNet"
def __init__(self,**kwargs):
super().__init__(**kwargs)
self.DEVICE = 'cuda:0' if torch.cuda.is_available() else 'cpu'