Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Ryukijano
/
Era3D_MV_demo
like
0
Build error
App
Files
Files
Community
9ff0719
Era3D_MV_demo
/
app.py
Ryukijano
initial commit
9ff0719
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
148 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()