sosoai commited on
Commit
8958eb8
β€’
1 Parent(s): 0b55514

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -1,3 +1,10 @@
1
  import gradio as gr
2
 
3
- gr.load("models/JunBro/pronunciation_scoring_model_accuracy").launch()
 
 
 
 
 
 
 
 
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()