Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
unb-lamfo-nlp-mcti
/
README
like
1
Sleeping
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
ea38fc4
README
/
app.py
cvictorr2508
Update app.py
765d5e6
over 2 years ago
raw
Copy download link
history
blame
Safe
172 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!"
interface = gr.Interface(greet,
"text"
,
"text"
)
if
__name__ ==
"__main__"
:
interface.launch()