Automatic Speech Recognition
Transformers
PyTorch
Safetensors
French
English
speech_to_text
audio
speech-translation
Instructions to use joaogante/test_audio with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use joaogante/test_audio with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="joaogante/test_audio")# Load model directly from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq processor = AutoProcessor.from_pretrained("joaogante/test_audio") model = AutoModelForSpeechSeq2Seq.from_pretrained("joaogante/test_audio") - Notebooks
- Google Colab
- Kaggle
Add multilingual to the language tag
#5
by lbourdois - opened
README.md
CHANGED
|
@@ -2,13 +2,14 @@
|
|
| 2 |
language:
|
| 3 |
- fr
|
| 4 |
- en
|
| 5 |
-
|
| 6 |
-
|
| 7 |
tags:
|
| 8 |
- audio
|
| 9 |
- speech-translation
|
| 10 |
- automatic-speech-recognition
|
| 11 |
-
|
|
|
|
| 12 |
pipeline_tag: automatic-speech-recognition
|
| 13 |
widget:
|
| 14 |
- example_title: Librispeech sample 1
|
|
|
|
| 2 |
language:
|
| 3 |
- fr
|
| 4 |
- en
|
| 5 |
+
- multilingual
|
| 6 |
+
license: mit
|
| 7 |
tags:
|
| 8 |
- audio
|
| 9 |
- speech-translation
|
| 10 |
- automatic-speech-recognition
|
| 11 |
+
datasets:
|
| 12 |
+
- covost2
|
| 13 |
pipeline_tag: automatic-speech-recognition
|
| 14 |
widget:
|
| 15 |
- example_title: Librispeech sample 1
|