KDM999 commited on
Commit
99eb4a3
·
verified ·
1 Parent(s): 304dfc5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -101,10 +101,12 @@ def transcribe_audio(file_path):
101
  # Gradio Interface
102
  with gr.Blocks() as demo:
103
  gr.Markdown("# Comparing ASR Models on Diverse English Speech Samples")
104
- gr.Markdown("
105
- This demo compares the transcription performance of six automatic speech recognition (ASR) models on audio samples from English learners. "
106
- "Users can select speaker metadata (age, gender, accent) to explore how models handle diverse speech profiles. "
107
- "All samples are drawn from the validated subset (n=249) of the English dataset in the Common Voice Delta Segment 21.0 release.")
 
 
108
 
109
  with gr.Row():
110
  age = gr.Dropdown(choices=ages, label="Age")
 
101
  # Gradio Interface
102
  with gr.Blocks() as demo:
103
  gr.Markdown("# Comparing ASR Models on Diverse English Speech Samples")
104
+ gr.Markdown("""
105
+ This demo compares the transcription performance of several automatic speech recognition (ASR) models.
106
+ Users can select age, gender, and accent to generate diverse English audio samples.
107
+ The models are evaluated on their ability to transcribe those samples.
108
+ Data is sourced from 249 validated entries in the Common Voice English Delta Segment 21.0 release.
109
+ """)
110
 
111
  with gr.Row():
112
  age = gr.Dropdown(choices=ages, label="Age")