Irpan
commited on
Commit
·
334daaa
1
Parent(s):
14adf0c
app
Browse files
app.py
CHANGED
@@ -3,17 +3,20 @@ import util
|
|
3 |
import tts
|
4 |
import asr
|
5 |
|
6 |
-
title="Uyghur Pronunciation Checker"
|
7 |
-
description="""
|
8 |
-
This app is designed to help users practice Uyghur pronunciation.
|
9 |
-
Select an uyghur script, enter or generate text, and check your pronunciation. You may also generate AI pronunciation to compare.
|
10 |
-
|
11 |
-
Note: Please audio input to >10 sec for faster processing since this space is running on CPU basic.
|
12 |
-
"""
|
13 |
-
|
14 |
-
|
15 |
# Front-End
|
16 |
with gr.Blocks(title=title, description=description) as app:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
with gr.Row():
|
18 |
# Input Column
|
19 |
with gr.Column(scale=1):
|
|
|
3 |
import tts
|
4 |
import asr
|
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
# Front-End
|
7 |
with gr.Blocks(title=title, description=description) as app:
|
8 |
+
# Title and Article
|
9 |
+
with gr.Row():
|
10 |
+
gr.Markdown(
|
11 |
+
"""
|
12 |
+
# Uyghur Pronunciation Checker
|
13 |
+
This app is designed to help users practice Uyghur pronunciation.
|
14 |
+
|
15 |
+
Select an uyghur script, enter or generate text, and check your pronunciation. You may also generate AI pronunciation to compare.
|
16 |
+
|
17 |
+
Note: Please audio input to >10 sec for faster processing since this space is running on CPU basic.
|
18 |
+
"""
|
19 |
+
)
|
20 |
with gr.Row():
|
21 |
# Input Column
|
22 |
with gr.Column(scale=1):
|