ummonk commited on
Commit
a3a9cf8
·
verified ·
1 Parent(s): f071ce8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -16,7 +16,7 @@ import gradio as gr
16
  demo = gr.Interface(
17
  fn=classify_audio,
18
  inputs=gr.Audio(sources="microphone", type="filepath"),
19
- outputs=gr.outputs.Label(),
20
  title="Accent Guesser",
21
  description="Only designed for Anglosphere accents (North American, British, and Australian / New Zealand).\nSay the following text:\n'Please call Stella. Ask her to bring these things with her from the store: Six spoons of fresh snow peas, five thick slabs of blue cheese, and maybe a snack for her brother Bob. We also need a small plastic snake and a big toy frog for the kids. She can scoop these things into three red bags, and we will go meet her Wednesday at the train station.''"
22
  )
 
16
  demo = gr.Interface(
17
  fn=classify_audio,
18
  inputs=gr.Audio(sources="microphone", type="filepath"),
19
+ outputs=gr.Label(),
20
  title="Accent Guesser",
21
  description="Only designed for Anglosphere accents (North American, British, and Australian / New Zealand).\nSay the following text:\n'Please call Stella. Ask her to bring these things with her from the store: Six spoons of fresh snow peas, five thick slabs of blue cheese, and maybe a snack for her brother Bob. We also need a small plastic snake and a big toy frog for the kids. She can scoop these things into three red bags, and we will go meet her Wednesday at the train station.''"
22
  )