sanchit-gandhi HF staff commited on
Commit
213b090
1 Parent(s): 5d7014c

more gradio

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -133,8 +133,8 @@ if __name__ == "__main__":
133
  distil_runtime = gr.components.Textbox(label="Distil-Whisper Transcription Time (s)")
134
  runtime = gr.components.Textbox(label="Whisper Transcription Time (s)")
135
  with gr.Row():
136
- distil_transcription = gr.components.Textbox(label="Distil-Whisper Transcription").style(show_copy_button=True)
137
- transcription = gr.components.Textbox(label="Whisper Transcription").style(show_copy_button=True)
138
 
139
  button.click(
140
  fn=transcribe,
 
133
  distil_runtime = gr.components.Textbox(label="Distil-Whisper Transcription Time (s)")
134
  runtime = gr.components.Textbox(label="Whisper Transcription Time (s)")
135
  with gr.Row():
136
+ distil_transcription = gr.components.Textbox(label="Distil-Whisper Transcription", show_copy_button=True)
137
+ transcription = gr.components.Textbox(label="Whisper Transcription", show_copy_button=True)
138
 
139
  button.click(
140
  fn=transcribe,