facebook/omnilingual-asr-corpus
Viewer • Updated • 548k • 5.08k • 201
How to use ylacombe/omniASR_W2V_3B_SSL with Transformers:
# Load model directly
from transformers import AutoProcessor, AutoModelForPreTraining
processor = AutoProcessor.from_pretrained("ylacombe/omniASR_W2V_3B_SSL")
model = AutoModelForPreTraining.from_pretrained("ylacombe/omniASR_W2V_3B_SSL")Porting the SSL (self-supervised-learning) version of the Omnilingual-Asr W2V2 release from Meta to transformers. 3B checkpoint. More on the official repo.
Almost the same usage as indicated here.