v25, added Malyalam
Browse files
app.py
CHANGED
|
@@ -45,6 +45,11 @@ LANGUAGE_CONFIGS = {
|
|
| 45 |
"code": "kn",
|
| 46 |
"script": "Kannada",
|
| 47 |
"models": ["AudioX-South", "IndicConformer", "MMS"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
}
|
| 49 |
}
|
| 50 |
|
|
@@ -274,11 +279,11 @@ def create_interface():
|
|
| 274 |
.copy-area { font-family: monospace; font-size: 12px; }
|
| 275 |
""") as iface:
|
| 276 |
gr.Markdown("""
|
| 277 |
-
#
|
| 278 |
|
| 279 |
-
Compare ASR models across **
|
| 280 |
|
| 281 |
-
**Supported Languages:** Hindi, Gujarati, Marathi, Tamil, Telugu, Kannada
|
| 282 |
""")
|
| 283 |
|
| 284 |
with gr.Row():
|
|
@@ -305,7 +310,7 @@ def create_interface():
|
|
| 305 |
)
|
| 306 |
|
| 307 |
reference_input = gr.Textbox(
|
| 308 |
-
label="
|
| 309 |
placeholder="Paste reference transcription here...",
|
| 310 |
lines=4,
|
| 311 |
interactive=True
|
|
@@ -385,7 +390,7 @@ def create_interface():
|
|
| 385 |
# Language information display
|
| 386 |
gr.Markdown("""
|
| 387 |
---
|
| 388 |
-
###
|
| 389 |
|
| 390 |
| Language | Script | AudioX-North | AudioX-South | IndicConformer | MMS |
|
| 391 |
|----------|---------|-------------|-------------|---------------|-----|
|
|
@@ -395,6 +400,7 @@ def create_interface():
|
|
| 395 |
| Tamil | Tamil | โ | โ
| โ
| โ
|
|
| 396 |
| Telugu | Telugu | โ | โ
| โ
| โ
|
|
| 397 |
| Kannada | Kannada | โ | โ
| โ
| โ
|
|
|
|
|
| 398 |
|
| 399 |
### ๐ก Tips:
|
| 400 |
- **Models auto-filter** based on selected language
|
|
|
|
| 45 |
"code": "kn",
|
| 46 |
"script": "Kannada",
|
| 47 |
"models": ["AudioX-South", "IndicConformer", "MMS"]
|
| 48 |
+
},
|
| 49 |
+
"Malayalam (เดฎเดฒเดฏเดพเดณเด)": {
|
| 50 |
+
"code": "ml",
|
| 51 |
+
"script": "Malayalam",
|
| 52 |
+
"models": ["AudioX-South", "IndicConformer", "MMS"]
|
| 53 |
}
|
| 54 |
}
|
| 55 |
|
|
|
|
| 279 |
.copy-area { font-family: monospace; font-size: 12px; }
|
| 280 |
""") as iface:
|
| 281 |
gr.Markdown("""
|
| 282 |
+
# ๐ Multilingual Speech-to-Text Benchmark
|
| 283 |
|
| 284 |
+
Compare ASR models across **7 Indian Languages** with comprehensive metrics.
|
| 285 |
|
| 286 |
+
**Supported Languages:** Hindi, Gujarati, Marathi, Tamil, Telugu, Kannada, Malayalam
|
| 287 |
""")
|
| 288 |
|
| 289 |
with gr.Row():
|
|
|
|
| 310 |
)
|
| 311 |
|
| 312 |
reference_input = gr.Textbox(
|
| 313 |
+
label="๐ Reference Text (optional, paste supported)",
|
| 314 |
placeholder="Paste reference transcription here...",
|
| 315 |
lines=4,
|
| 316 |
interactive=True
|
|
|
|
| 390 |
# Language information display
|
| 391 |
gr.Markdown("""
|
| 392 |
---
|
| 393 |
+
### ๐ค Language & Model Support Matrix
|
| 394 |
|
| 395 |
| Language | Script | AudioX-North | AudioX-South | IndicConformer | MMS |
|
| 396 |
|----------|---------|-------------|-------------|---------------|-----|
|
|
|
|
| 400 |
| Tamil | Tamil | โ | โ
| โ
| โ
|
|
| 401 |
| Telugu | Telugu | โ | โ
| โ
| โ
|
|
| 402 |
| Kannada | Kannada | โ | โ
| โ
| โ
|
|
| 403 |
+
| Malayalam | Malayalam | โ | โ
| โ
| โ
|
|
| 404 |
|
| 405 |
### ๐ก Tips:
|
| 406 |
- **Models auto-filter** based on selected language
|