Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,10 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
# Hugging Face ๋ชจ๋ธ ์๋ณ์
|
4 |
+
model_id = "JunBro/pronunciation_scoring_model_accuracy"
|
5 |
+
|
6 |
+
# Gradio ์ธํฐํ์ด์ค ๋ก๋
|
7 |
+
interface = gr.Interface.load(model_id)
|
8 |
+
|
9 |
+
# ์ธํฐํ์ด์ค ์คํ
|
10 |
+
interface.launch()
|