Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,16 +1,13 @@
|
|
1 |
import requests
|
2 |
import gradio as gr
|
|
|
3 |
|
4 |
-
|
5 |
-
headers = {"Authorization": "Bearer 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"}
|
6 |
|
7 |
-
def
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
iface = gr.Interface(fn=query,inputs=gr.Audio(source="microphone", type="filepath"),outputs="text")
|
15 |
|
16 |
iface.launch()
|
|
|
1 |
import requests
|
2 |
import gradio as gr
|
3 |
+
from transformers import pipeline
|
4 |
|
5 |
+
p = pipeline("wav2vec2-large-xls-r-300m-wolof-test-coloab")
|
|
|
6 |
|
7 |
+
def transcribe(audio):
|
8 |
+
text = p(audio)["text"]
|
9 |
+
return text
|
10 |
+
|
11 |
+
iface = gr.Interface(fn=transcribe,inputs=gr.Audio(source="microphone", type="filepath"),outputs="text")
|
|
|
|
|
|
|
12 |
|
13 |
iface.launch()
|