Spaces:
Sleeping
Sleeping
Unityraptor
commited on
Commit
•
ab9ad6a
1
Parent(s):
0bc0d17
Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,17 @@
|
|
1 |
import gradio as gr
|
2 |
-
from transformers import pipeline
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
|
|
|
1 |
import gradio as gr
|
2 |
+
from transformers import pipeline
|
3 |
+
|
4 |
+
pipe = pipeline("image-to-text",
|
5 |
+
model="Salesforce/blip-image-captioning-base")
|
6 |
+
|
7 |
+
|
8 |
+
def launch(input):
|
9 |
+
out = pipe(input)
|
10 |
+
return out[0]['generated_text']
|
11 |
+
|
12 |
+
iface = gr.Interface(launch,
|
13 |
+
inputs=gr.Image(type='pil'),
|
14 |
+
outputs="text")
|
15 |
+
|
16 |
+
iface.launch()
|
17 |
|