Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
itacdonev
/
app_proba
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
app_proba
/
app.py
itacdonev
Format
32a91a6
over 3 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
193 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet,
inputs=
"text"
,
outputs=
"text"
)
iface.launch()