Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
pablovela5620
/
MiniDPVO
like
7
Sleeping
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
473c949
MiniDPVO
/
pixi_app.py
pablovela5620
add lsof package and check port 7860 before hand
f6fe9bf
11 months ago
raw
Copy download link
history
blame
Safe
Wrap lines
154 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello pixi"
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()