Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ProICE
/
NDPSX
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
FrostIce
commited on
Dec 22, 2024
Commit
64b1dfa
·
verified
·
1 Parent(s):
791098e
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
ADDED
Viewed
@@ -0,0 +1,6 @@
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()