Fake_Detection / deepfakeconfig.py
SivaResearch's picture
Model Iploaded
f3f8c30
raw
history blame contribute delete
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'