Irpan
commited on
Commit
•
93e9d4f
1
Parent(s):
b1e229a
app
Browse files- app.py +11 -11
- requirements.txt +3 -0
app.py
CHANGED
@@ -84,17 +84,17 @@ with gr.Blocks() as app:
|
|
84 |
placeholder="Your pronunciation score as a percentage..."
|
85 |
)
|
86 |
|
87 |
-
with gr.Group():
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
|
99 |
# Bind functions to buttons
|
100 |
generate_btn.click(
|
|
|
84 |
placeholder="Your pronunciation score as a percentage..."
|
85 |
)
|
86 |
|
87 |
+
# with gr.Group():
|
88 |
+
# with gr.Row():
|
89 |
+
# match_box = gr.Textbox(
|
90 |
+
# label="Phonetic Match",
|
91 |
+
# placeholder="Matching and mismatched characters visualized here..."
|
92 |
+
# )
|
93 |
+
# with gr.Row():
|
94 |
+
# score_box = gr.Textbox(
|
95 |
+
# label="Phonetic Score",
|
96 |
+
# placeholder="Your pronunciation score as a percentage..."
|
97 |
+
# )
|
98 |
|
99 |
# Bind functions to buttons
|
100 |
generate_btn.click(
|
requirements.txt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
gradio==2.9.1
|
2 |
+
torch
|
3 |
+
transformers
|