Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Pranjal2041
/
SemSup-XC
like
1
Runtime error
App
Files
Files
Community
729346b
SemSup-XC
/
sample.py
Pranjal2041
Initial Commit
4014562
almost 2 years ago
raw
Copy download link
history
blame
Safe
162 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch(share =
True
)