Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Suburst
/
DDM_DeepSort
like
2
Sleeping
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
cacabf7
DDM_DeepSort
/
app.py
Suburst
Update app.py
cacabf7
verified
4 months ago
raw
Copy download link
history
blame
Safe
149 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"video"
, outputs=
"video"
)
demo.launch()