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