Update app.py
Browse files
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
|
106 |
-
|
107 |
-
|
|
|
|
|
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")
|