Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
gojgo
/
go_model
like
0
Follow
Go AI
1
Model card
Files
Files and versions
Community
main
go_model
/
app.py
ted163
Upload 6 files
e712768
verified
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
200 Bytes
import
gradio
as
gr
def
greet
(
name, intensity
):
return
"Hello "
* intensity + name +
"!"
demo = gr.Interface(
fn=greet,
inputs=[
"text"
,
"slider"
],
outputs=[
"text"
],
)
demo.launch()