Spaces:
Sleeping
Sleeping
DanielDBGC
commited on
Commit
•
90883a0
1
Parent(s):
e220118
corr2
Browse files
app.py
CHANGED
@@ -3,14 +3,14 @@ from transformers import pipeline
|
|
3 |
|
4 |
pipeline = pipeline(model="DanielDBGC/my_awesome_lang_class_mind_model")
|
5 |
|
6 |
-
def predict(
|
7 |
-
predictions = pipeline(
|
8 |
-
return
|
9 |
|
10 |
gradio_app = gr.Interface(
|
11 |
predict,
|
12 |
inputs=gr.Audio(label="Record or upload ", sources=['upload', 'microphone'], type = 'numpy'),
|
13 |
-
outputs=[gr.
|
14 |
title="Guess the language!",
|
15 |
)
|
16 |
|
|
|
3 |
|
4 |
pipeline = pipeline(model="DanielDBGC/my_awesome_lang_class_mind_model")
|
5 |
|
6 |
+
def predict(input_sound):
|
7 |
+
predictions = pipeline(input_sound)
|
8 |
+
return input_sound, {p["label"]: p["score"] for p in predictions}
|
9 |
|
10 |
gradio_app = gr.Interface(
|
11 |
predict,
|
12 |
inputs=gr.Audio(label="Record or upload ", sources=['upload', 'microphone'], type = 'numpy'),
|
13 |
+
outputs=[gr.Audio(label="Processed Voice"), gr.Label(label="Result", num_top_classes=3)],
|
14 |
title="Guess the language!",
|
15 |
)
|
16 |
|