DanielDBGC commited on
Commit
124b67b
1 Parent(s): 90883a0

creo que ya

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -1,16 +1,16 @@
1
  import gradio as gr
2
  from transformers import pipeline
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
 
 
1
  import gradio as gr
2
  from transformers import pipeline
3
 
4
+ pipeline = pipeline("audio-classification", model="DanielDBGC/my_awesome_lang_class_mind_model")
5
 
6
  def predict(input_sound):
7
  predictions = pipeline(input_sound)
8
+ return {p["label"]: p["score"] for p in predictions}
9
 
10
  gradio_app = gr.Interface(
11
  predict,
12
+ inputs=gr.Audio(label="Record or upload someone speaking!", sources=['upload', 'microphone'], type = 'numpy'),
13
+ outputs=[gr.Label(label="Result", num_top_classes=3)],
14
  title="Guess the language!",
15
  )
16