Spaces:
Build error
Build error
Commit
·
7d7ed31
1
Parent(s):
321e3a5
small fixes
Browse files
app.py
CHANGED
|
@@ -91,8 +91,20 @@ def process(in_filename: str, language: str) -> str:
|
|
| 91 |
return hyp
|
| 92 |
|
| 93 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 94 |
with demo:
|
| 95 |
-
gr.Markdown(
|
|
|
|
| 96 |
language_choices = list(models.keys())
|
| 97 |
language = gr.inputs.Radio(
|
| 98 |
label="Language",
|
|
|
|
| 91 |
return hyp
|
| 92 |
|
| 93 |
|
| 94 |
+
title = "# Automatic Speech Recognition with Next-gen Kaldi"
|
| 95 |
+
description = """
|
| 96 |
+
This space shows how to do automatic speech recognition with Next-gen Kaldi.
|
| 97 |
+
|
| 98 |
+
See more information by visiting the following links:
|
| 99 |
+
- https://github.com/k2-fsa/icefall
|
| 100 |
+
- https://github.com/k2-fsa/sherpa
|
| 101 |
+
- https://github.com/k2-fsa/k2
|
| 102 |
+
- https://github.com/lhotse-speech/lhotse
|
| 103 |
+
"""
|
| 104 |
+
|
| 105 |
with demo:
|
| 106 |
+
gr.Markdown(title)
|
| 107 |
+
gr.Markdown(description)
|
| 108 |
language_choices = list(models.keys())
|
| 109 |
language = gr.inputs.Radio(
|
| 110 |
label="Language",
|