google/fleurs
Viewer • Updated • 768k • 63.4k • 407
How to use Shiry/whisper-large-v2-he with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Shiry/whisper-large-v2-he") # Load model directly
from transformers import AutoProcessor, AutoModelForMultimodalLM
processor = AutoProcessor.from_pretrained("Shiry/whisper-large-v2-he")
model = AutoModelForMultimodalLM.from_pretrained("Shiry/whisper-large-v2-he")# Load model directly
from transformers import AutoProcessor, AutoModelForMultimodalLM
processor = AutoProcessor.from_pretrained("Shiry/whisper-large-v2-he")
model = AutoModelForMultimodalLM.from_pretrained("Shiry/whisper-large-v2-he")This model is a fine-tuned version of openai/whisper-large-v2 on the google/fleurs he_il dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="Shiry/whisper-large-v2-he")