Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ankandrew
/
Qwen2.5VL
like
0
Running
on
Zero
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
f0c7145
Qwen2.5VL
/
app.py
ankandrew
WIP
f0c7145
5 months ago
raw
Copy download link
history
blame
Safe
176 Bytes
import
gradio
as
gr
import
spaces
@spaces.GPU
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()