Transformers How to use prithivMLmods/Common-Voice-Gender-Detection with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("audio-classification", model="prithivMLmods/Common-Voice-Gender-Detection") # Load model directly
from transformers import AutoProcessor, AutoModelForAudioClassification
processor = AutoProcessor.from_pretrained("prithivMLmods/Common-Voice-Gender-Detection")
model = AutoModelForAudioClassification.from_pretrained("prithivMLmods/Common-Voice-Gender-Detection")