Update app.py
Browse files
app.py
CHANGED
@@ -52,7 +52,7 @@ pipe.to(device)
|
|
52 |
|
53 |
@spaces.GPU(duration=150)
|
54 |
def generate_caption_and_image(image, f, p, d):
|
55 |
-
if f and p and d:
|
56 |
img = image.convert("RGB")
|
57 |
# reader = easyocr.Reader(['en'])
|
58 |
# # result = reader.readtext(img)
|
@@ -91,7 +91,7 @@ def generate_caption_and_image(image, f, p, d):
|
|
91 |
# Generate image based on the caption
|
92 |
generated_image = pipe(prompt).images[0]
|
93 |
|
94 |
-
return
|
95 |
|
96 |
# Gradio UI
|
97 |
iface = gr.Interface(
|
|
|
52 |
|
53 |
@spaces.GPU(duration=150)
|
54 |
def generate_caption_and_image(image, f, p, d):
|
55 |
+
if f!=None and p!=None and d!=None:
|
56 |
img = image.convert("RGB")
|
57 |
# reader = easyocr.Reader(['en'])
|
58 |
# # result = reader.readtext(img)
|
|
|
91 |
# Generate image based on the caption
|
92 |
generated_image = pipe(prompt).images[0]
|
93 |
|
94 |
+
return generated_image
|
95 |
|
96 |
# Gradio UI
|
97 |
iface = gr.Interface(
|