Training in progress, epoch 1 30f59cf verified
Mohammed Abdeldayem commited on
How to use mo-thecreator/Deepfake-audio-detection with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("audio-classification", model="mo-thecreator/Deepfake-audio-detection") # Load model directly
from transformers import AutoProcessor, AutoModelForAudioClassification
processor = AutoProcessor.from_pretrained("mo-thecreator/Deepfake-audio-detection")
model = AutoModelForAudioClassification.from_pretrained("mo-thecreator/Deepfake-audio-detection", device_map="auto")