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