Instructions to use openai/whisper-large-v3-turbo with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use openai/whisper-large-v3-turbo with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="openai/whisper-large-v3-turbo")# Load model directly from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq processor = AutoProcessor.from_pretrained("openai/whisper-large-v3-turbo") model = AutoModelForSpeechSeq2Seq.from_pretrained("openai/whisper-large-v3-turbo", device_map="auto") - Inference
- Notebooks
- Google Colab
- Kaggle
- AMD Developer Cloud
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
---
|
| 2 |
-
language:
|
| 3 |
- en
|
| 4 |
- zh
|
| 5 |
- de
|
|
@@ -29,7 +29,7 @@ language:
|
|
| 29 |
- da
|
| 30 |
- hu
|
| 31 |
- ta
|
| 32 |
-
- no
|
| 33 |
- th
|
| 34 |
- ur
|
| 35 |
- hr
|
|
@@ -99,17 +99,18 @@ language:
|
|
| 99 |
- ba
|
| 100 |
- jw
|
| 101 |
- su
|
| 102 |
-
license:
|
| 103 |
tags:
|
| 104 |
- audio
|
| 105 |
- automatic-speech-recognition
|
| 106 |
-
- hf-asr-leaderboard
|
| 107 |
widget:
|
| 108 |
- example_title: Librispeech sample 1
|
| 109 |
src: https://cdn-media.huggingface.co/speech_samples/sample1.flac
|
| 110 |
- example_title: Librispeech sample 2
|
| 111 |
src: https://cdn-media.huggingface.co/speech_samples/sample2.flac
|
| 112 |
pipeline_tag: automatic-speech-recognition
|
|
|
|
|
|
|
| 113 |
---
|
| 114 |
|
| 115 |
# Whisper
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
- en
|
| 4 |
- zh
|
| 5 |
- de
|
|
|
|
| 29 |
- da
|
| 30 |
- hu
|
| 31 |
- ta
|
| 32 |
+
- 'no'
|
| 33 |
- th
|
| 34 |
- ur
|
| 35 |
- hr
|
|
|
|
| 99 |
- ba
|
| 100 |
- jw
|
| 101 |
- su
|
| 102 |
+
license: mit
|
| 103 |
tags:
|
| 104 |
- audio
|
| 105 |
- automatic-speech-recognition
|
|
|
|
| 106 |
widget:
|
| 107 |
- example_title: Librispeech sample 1
|
| 108 |
src: https://cdn-media.huggingface.co/speech_samples/sample1.flac
|
| 109 |
- example_title: Librispeech sample 2
|
| 110 |
src: https://cdn-media.huggingface.co/speech_samples/sample2.flac
|
| 111 |
pipeline_tag: automatic-speech-recognition
|
| 112 |
+
base_model:
|
| 113 |
+
- openai/whisper-large-v3
|
| 114 |
---
|
| 115 |
|
| 116 |
# Whisper
|