nithinraok commited on
Commit
43d5683
·
1 Parent(s): c5d9a5e

Signed-off-by: nithinraok <[email protected]>

Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -313,13 +313,13 @@ def play_segment(evt: gr.SelectData, raw_ts_list, current_audio_path):
313
 
314
  article = (
315
  "<p style='font-size: 1.1em;'>"
316
- "This demo showcases <code><a href='https://huggingface.co/nvidia/parakeet-tdt-0.6b-v3'>parakeet-tdt-0.6b-v3</a></code>, a 600-million-parameter <strong>multilingual</strong> model designed for high-quality speech recognition with automatic language detection."
317
  "</p>"
318
  "<p><strong style='color: red; font-size: 1.2em;'>Key Features:</strong></p>"
319
  "<ul style='font-size: 1.1em;'>"
 
320
  " <li>Automatic punctuation and capitalization</li>"
321
  " <li>Accurate word-level timestamps (click on a segment in the table below to play it!)</li>"
322
- " <li>Multilingual transcription across 25 European languages with automatic language detection</li>"
323
  " <li>Long audio transcription: up to 24 minutes with full attention (A100 80GB) or up to 3 hours with local attention</li>"
324
  "</ul>"
325
  "<p style='font-size: 1.1em;'>"
@@ -362,7 +362,7 @@ nvidia_theme = gr_themes.Default(
362
  # Apply the custom theme
363
  with gr.Blocks(theme=nvidia_theme) as demo:
364
  model_display_name = MODEL_NAME.split('/')[-1] if '/' in MODEL_NAME else MODEL_NAME
365
- gr.Markdown(f"<h1 style='text-align: center; margin: 0 auto;'>Speech Transcription with 🦜 {model_display_name}</h1>")
366
  gr.HTML(article)
367
 
368
  current_audio_path_state = gr.State(None)
 
313
 
314
  article = (
315
  "<p style='font-size: 1.1em;'>"
316
+ "This demo showcases <code><a href='https://huggingface.co/nvidia/parakeet-tdt-0.6b-v3'>parakeet-tdt-0.6b-v3</a></code>, a 600-million-parameter <strong>multilingual</strong> model designed for high-quality speech recognition."
317
  "</p>"
318
  "<p><strong style='color: red; font-size: 1.2em;'>Key Features:</strong></p>"
319
  "<ul style='font-size: 1.1em;'>"
320
+ " <li>Multilingual transcription across 25 European languages</li>"
321
  " <li>Automatic punctuation and capitalization</li>"
322
  " <li>Accurate word-level timestamps (click on a segment in the table below to play it!)</li>"
 
323
  " <li>Long audio transcription: up to 24 minutes with full attention (A100 80GB) or up to 3 hours with local attention</li>"
324
  "</ul>"
325
  "<p style='font-size: 1.1em;'>"
 
362
  # Apply the custom theme
363
  with gr.Blocks(theme=nvidia_theme) as demo:
364
  model_display_name = MODEL_NAME.split('/')[-1] if '/' in MODEL_NAME else MODEL_NAME
365
+ gr.Markdown(f"<h1 style='text-align: center; margin: 0 auto;'>Speech Transcription with {model_display_name}</h1> 🦜")
366
  gr.HTML(article)
367
 
368
  current_audio_path_state = gr.State(None)