MoulSot.0.1
Collection
Series of Moroccan Darija Speech Systems and Datasets • 4 items • Updated
How to use 01Yassine/moulsot_v0.1_2500 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="01Yassine/moulsot_v0.1_2500") # Load model directly
from transformers import AutoProcessor, AutoModelForMultimodalLM
processor = AutoProcessor.from_pretrained("01Yassine/moulsot_v0.1_2500")
model = AutoModelForMultimodalLM.from_pretrained("01Yassine/moulsot_v0.1_2500")# Load model directly
from transformers import AutoProcessor, AutoModelForMultimodalLM
processor = AutoProcessor.from_pretrained("01Yassine/moulsot_v0.1_2500")
model = AutoModelForMultimodalLM.from_pretrained("01Yassine/moulsot_v0.1_2500")
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="01Yassine/moulsot_v0.1_2500")