Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
tonyassi/blip-image-captioning-large
DHEIVER
/
blip-image-captioning-large
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
183ba69
blip-image-captioning-large
/
app.py
tonyassi
Create app.py
183ba69
over 1 year ago
raw
Copy download link
history
blame
Safe
166 Bytes
import
gradio
as
gr
def
greet
(
img
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=gr.Image(
type
=
'filepath'
, outputs=
"text"
)
iface.launch()