Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Advertider
/
B-max
like
0
Sleeping
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
refs/pr/2
B-max
/
app.py
Advertider
Create app.py
79e4589
verified
about 2 months ago
raw
Copy download link
history
blame
152 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello Group"
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()