erastorgueva-nv
commited on
Commit
β’
a37c6d3
1
Parent(s):
abb41a8
add links to tutorials and github page
Browse files
app.py
CHANGED
@@ -295,6 +295,15 @@ with gr.Blocks(title="NeMo Forced Aligner", theme="huggingface") as demo:
|
|
295 |
video_out = gr.Video(label="output video")
|
296 |
text_out = gr.Textbox(label="output info", visible=False)
|
297 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
298 |
submit_button.click(
|
299 |
fn=align,
|
300 |
inputs=[lang_drop, mic_in, audio_file_in, ref_text, col1, col2, col3,],
|
|
|
295 |
video_out = gr.Video(label="output video")
|
296 |
text_out = gr.Textbox(label="output info", visible=False)
|
297 |
|
298 |
+
with gr.Row():
|
299 |
+
gr.HTML(
|
300 |
+
"<p style='text-align: center'>"
|
301 |
+
"Tutorial: <a href='https://colab.research.google.com/github/NVIDIA/NeMo/blob/main/tutorials/tools/NeMo_Forced_Aligner_Tutorial.ipynb' target='_blank'>\"How to use NFA?\"</a> π | "
|
302 |
+
"Blog post: <a href='https://nvidia.github.io/NeMo/blogs/2023/2023-08-forced-alignment/' target='_blank'>\"How does forced alignment work?\"</a> π | "
|
303 |
+
"NFA <a href='https://github.com/NVIDIA/NeMo/tree/main/tools/nemo_forced_aligner/' target='_blank'>Github page</a> π©βπ»"
|
304 |
+
"</p>"
|
305 |
+
)
|
306 |
+
|
307 |
submit_button.click(
|
308 |
fn=align,
|
309 |
inputs=[lang_drop, mic_in, audio_file_in, ref_text, col1, col2, col3,],
|