Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
zeisel
/
SCMBench
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
17bd915
SCMBench
/
app.py
zeisel
Updata
ddff6b5
verified
11 months ago
raw
Copy download link
history
blame
Safe
142 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
f"Hello,
{name}
!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()