Spaces:
Sleeping
Sleeping
Ruhullah Shaikh
commited on
Commit
•
f87cc44
1
Parent(s):
ab5e426
updated app.py
Browse files
app.py
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
-
import os
|
2 |
import gradio as gr
|
3 |
from transformers import pipeline
|
4 |
|
5 |
pipe = pipeline("image-to-text",
|
6 |
model="Salesforce/blip-image-captioning-base")
|
7 |
|
|
|
8 |
def launch(input):
|
9 |
out = pipe(input)
|
10 |
return out[0]['generated_text']
|
|
|
|
|
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']
|