Mediocreatmybest commited on
Commit
b9aba88
·
1 Parent(s): bd9b9f2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -44,10 +44,10 @@ def caption_image(model_choice, image_input, url_input, load_in_8bit, device):
44
  return [str(c['generated_text']).strip() for c in caption]
45
 
46
  model_dropdown = gr.Dropdown(choices=list(CAPTION_MODELS.keys()), label='Select Caption Model')
47
- image_input = gr.Image(type="pil", label="Input Image", multiple=True) # Enable multiple inputs
48
  url_input = gr.Text(label="Input URL")
49
  load_in_8bit = gr.Checkbox(label="Load model in 8bit")
50
- device = gr.Radio(['cpu', 'cuda'], label='Select device', default='cpu')
51
 
52
- iface = gr.Interface(caption_image, inputs=[model_dropdown, image_input, url_input, load_in_8bit, device], outputs=gr.interfaces.outputs.Textbox(type="text", label="Caption"))
53
  iface.launch()
 
44
  return [str(c['generated_text']).strip() for c in caption]
45
 
46
  model_dropdown = gr.Dropdown(choices=list(CAPTION_MODELS.keys()), label='Select Caption Model')
47
+ image_input = gr.Image(type="pil", label="Input Image") # multiple is not supported in gradio
48
  url_input = gr.Text(label="Input URL")
49
  load_in_8bit = gr.Checkbox(label="Load model in 8bit")
50
+ device = gr.Radio(['cpu', 'cuda'], label='Select device')
51
 
52
+ iface = gr.Interface(caption_image, inputs=[model_dropdown, image_input, url_input, load_in_8bit, device], outputs=gr.Textbox(type="text", label="Caption"))
53
  iface.launch()