DanielDBGC commited on
Commit
90883a0
1 Parent(s): e220118
Files changed (1) hide show
  1. app.py +4 -4
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(input_img):
7
- predictions = pipeline(input_img)
8
- return input_img, {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.Image(label="Processed Voice"), gr.Label(label="Result", num_top_classes=3)],
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