FrostIce commited on
Commit
302461d
·
verified ·
1 Parent(s): 08b79fd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,6 +1,6 @@
1
  import gradio as gr
2
- import NDPS
3
 
4
 
5
- demo = gr.Interface(fn=NDPS, inputs="text", outputs="text")
6
  demo.launch()
 
1
  import gradio as gr
2
+ from NDPS import ndps
3
 
4
 
5
+ demo = gr.Interface(fn=ndps, inputs="text", outputs="text")
6
  demo.launch()