Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
ApplyDesign/RemoveFurnitureV1
ApplyDesign
/
V1
like
0
Sleeping
App
Files
Files
Fetching metadata from the HF Docker repository...
1fc9ce6
V1
/
app.py
ApplyDesign
Update app.py
1fc9ce6
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
163 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"V1 Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch(share=
True
)