Spaces:
Running
Running
Commit
·
694d4c4
1
Parent(s):
2a03700
Add application file
Browse files
app.py
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from transformers import pipeline
|
| 2 |
+
import gradio as gr
|
| 3 |
+
|
| 4 |
+
pipe = pipeline(model="bhuang/wav2vec2-xls-r-1b-cv9-fr")
|
| 5 |
+
|
| 6 |
+
def transcribe(audio):
|
| 7 |
+
text = pipe(audio)["text"]
|
| 8 |
+
return text
|
| 9 |
+
|
| 10 |
+
iface = gr.Interface(
|
| 11 |
+
fn=transcribe,
|
| 12 |
+
inputs=gr.Audio(source="microphone", type="filepath", label="Record something..."),
|
| 13 |
+
outputs="text",
|
| 14 |
+
title="Automatic Speech Recognition in French",
|
| 15 |
+
description="Realtime demo for French automatic speech recognition using a fine-tuned wav2vec2 model.",
|
| 16 |
+
)
|
| 17 |
+
|
| 18 |
+
iface.launch()
|