Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
iamshreeji-copy1
/
shreeji
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
shreeji
/
app.py
iamshreeji
finalllle
a503090
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
220 Bytes
import
gradio
as
gr
def
greet
(
name, intensity
):
return
"Hello, "
+ name +
"!"
*
int
(intensity)
demo = gr.Interface(
fn=greet,
inputs=[
"text"
,
"slider"
],
outputs=[
"text"
],
)
demo.launch(share=
True
)