Spaces:
Running
on
Zero
Running
on
Zero
update heading and nemo branch
Browse filesSigned-off-by: monica-sekoyan <msekoyan@nvidia.com>
- app.py +4 -2
- requirements.txt +1 -1
app.py
CHANGED
|
@@ -316,8 +316,10 @@ nvidia_theme = gr_themes.Default(
|
|
| 316 |
# Apply the custom theme
|
| 317 |
with gr.Blocks(theme=nvidia_theme) as demo:
|
| 318 |
model_display_name = MODEL_NAME.split('/')[-1] if '/' in MODEL_NAME else MODEL_NAME
|
| 319 |
-
gr.HTML(f"
|
| 320 |
-
|
|
|
|
|
|
|
| 321 |
gr.HTML(article)
|
| 322 |
|
| 323 |
current_audio_path_state = gr.State(None)
|
|
|
|
| 316 |
# Apply the custom theme
|
| 317 |
with gr.Blocks(theme=nvidia_theme) as demo:
|
| 318 |
model_display_name = MODEL_NAME.split('/')[-1] if '/' in MODEL_NAME else MODEL_NAME
|
| 319 |
+
gr.HTML(f"""
|
| 320 |
+
<h1 style='text-align: center; margin-bottom: 0;'>🐤 Transcribe and Translate with {model_display_name}</h1>
|
| 321 |
+
<h3 style='text-align: center; margin-top: 5px; margin-bottom: 20px;'>in 25 European Languages</h3>
|
| 322 |
+
""")
|
| 323 |
gr.HTML(article)
|
| 324 |
|
| 325 |
current_audio_path_state = gr.State(None)
|
requirements.txt
CHANGED
|
@@ -1,2 +1,2 @@
|
|
| 1 |
Cython
|
| 2 |
-
git+https://github.com/NVIDIA/NeMo.git@
|
|
|
|
| 1 |
Cython
|
| 2 |
+
git+https://github.com/NVIDIA/NeMo.git@canary2_support#egg=nemo_toolkit[asr]
|