noamrot commited on
Commit
fd5307e
·
verified ·
1 Parent(s): d095afa

Update app.py

Browse files

fixed interactive

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -16,7 +16,7 @@ def inference(raw_image):
16
  caption = processor.decode(out[0], skip_special_tokens=True)
17
  return caption
18
 
19
- inputs = gr.Image(type="pil", interactive=False)
20
  outputs = gr.Textbox(label="Caption")
21
 
22
  description = "Gradio demo for FuseCap: Leveraging Large Language Models for Enriched Fused Image Captions. This demo features a BLIP-based model, trained using FuseCap."
 
16
  caption = processor.decode(out[0], skip_special_tokens=True)
17
  return caption
18
 
19
+ inputs = gr.Image(type="pil", interactive=True)
20
  outputs = gr.Textbox(label="Caption")
21
 
22
  description = "Gradio demo for FuseCap: Leveraging Large Language Models for Enriched Fused Image Captions. This demo features a BLIP-based model, trained using FuseCap."