Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -30,7 +30,7 @@ def download_rev_models():
|
|
30 |
from huggingface_hub import hf_hub_download
|
31 |
import joblib
|
32 |
|
33 |
-
REPO_ID = "Revai/
|
34 |
|
35 |
files = ['10.jit.zip', 'tk.units.txt']
|
36 |
downloaded_files = [hf_hub_download(repo_id=REPO_ID, filename=f) for f in files]
|
@@ -74,11 +74,11 @@ examples = [
|
|
74 |
|
75 |
output = gr.outputs.Textbox(label="Output Text")
|
76 |
|
77 |
-
text = "
|
78 |
|
79 |
# description
|
80 |
description = (
|
81 |
-
"
|
82 |
)
|
83 |
|
84 |
article = (
|
|
|
30 |
from huggingface_hub import hf_hub_download
|
31 |
import joblib
|
32 |
|
33 |
+
REPO_ID = "Revai/reverb-asr"
|
34 |
|
35 |
files = ['10.jit.zip', 'tk.units.txt']
|
36 |
downloaded_files = [hf_hub_download(repo_id=REPO_ID, filename=f) for f in files]
|
|
|
74 |
|
75 |
output = gr.outputs.Textbox(label="Output Text")
|
76 |
|
77 |
+
text = "Reverb ASR Transcription Styles Demo"
|
78 |
|
79 |
# description
|
80 |
description = (
|
81 |
+
"Reverb ASR supports verbatim and non-verbatim transcription. Try recording an audio with disfluencies (ex: \'uh\', \'um\') and testing both transcription styles. Or, choose an example audio below." # noqa
|
82 |
)
|
83 |
|
84 |
article = (
|