Masters Project
Collection
Investigation into if there's disparity in ASR models' understanding of different demographic groups, age and gender in this instance. • 6 items • Updated • 1
How to use gudjonk93/female_over_49 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="gudjonk93/female_over_49") # Load model directly
from transformers import AutoProcessor, AutoModelForCTC
processor = AutoProcessor.from_pretrained("gudjonk93/female_over_49")
model = AutoModelForCTC.from_pretrained("gudjonk93/female_over_49")