Fiqa commited on
Commit
b5e6cc8
·
verified ·
1 Parent(s): eb4cf9a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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 prompt, generated_image
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(