Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
till-onethousand
/
yolov2
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
080a611
yolov2
/
app.py
till-onethousand
copy
dc44f3b
6 months ago
raw
Copy download link
history
blame
Safe
215 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
)