Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
andreped
/
livermask
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
08b93ba
livermask
/
demo
/
app.py
andreped
Added test demo app [no ci]
dccef32
almost 2 years ago
raw
Copy download link
history
blame
148 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello"
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, output=
"text"
)
iface.launch()