Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jcisneros
/
learning1
like
0
Runtime error
App
Files
Files
Community
227ae16
learning1
/
app.py
jcisneros
share true
227ae16
over 1 year ago
raw
Copy download link
history
blame
Safe
159 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch(share=
True
)