Spaces:
No application file
No application file
Delete appli.py
Browse files
appli.py
DELETED
@@ -1,13 +0,0 @@
|
|
1 |
-
import gradio as gr
|
2 |
-
from transformers import pipeline
|
3 |
-
|
4 |
-
pipe = pipeline("image-to-text", model="salesforce/blip-image-captioning-base")
|
5 |
-
|
6 |
-
def launch(input):
|
7 |
-
out = pipe(input)
|
8 |
-
return out[0]['generated_text']
|
9 |
-
|
10 |
-
iface = gr.Interface(launch,
|
11 |
-
inputs=gr.inputs.Image(type='pil'),
|
12 |
-
outputs="text")
|
13 |
-
iface.launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|