Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sehaj13
/
AIML2025G
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
AIML2025G
/
app.py
sehaj13
Update app.py
8bfb748
verified
11 months ago
raw
Copy download link
history
blame
contribute
delete
186 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()