ginic commited on
Commit
86bf20d
·
1 Parent(s): 86bc5ce

Label output text box

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -46,7 +46,7 @@ def launch_demo():
46
  gr.Audio(type="filepath"),
47
  gr.State(value=initial_model) #Store the name of the currently loaded model
48
  ],
49
- outputs=["text", gr.State()],
50
  allow_flagging="never",
51
  title="Automatic International Phonetic Alphabet Transcription",
52
  description="This demo allows you to experiment with producing phonetic transcriptions of uploaded or recorded audio using a selected automatic speech recognition (ASR) model."
 
46
  gr.Audio(type="filepath"),
47
  gr.State(value=initial_model) #Store the name of the currently loaded model
48
  ],
49
+ outputs=[gr.Textbox(label="Predicted IPA transcription"), gr.State()],
50
  allow_flagging="never",
51
  title="Automatic International Phonetic Alphabet Transcription",
52
  description="This demo allows you to experiment with producing phonetic transcriptions of uploaded or recorded audio using a selected automatic speech recognition (ASR) model."