efeperro commited on
Commit
aa98dc9
·
verified ·
1 Parent(s): 1ec1322

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -140,8 +140,8 @@ sample_images = [
140
  # Define Gradio interface
141
  interface = gr.Interface(
142
  fn=generate_caption,
143
- inputs=gr.Image(source="upload", tool='editor', type="numpy", label="Upload an image or take a photo"),
144
- outputs='text',
145
  examples=sample_images,
146
  title="Image Captioning Model",
147
  description="Upload an image, select a sample image, or use your webcam to take a photo and generate a caption."
 
140
  # Define Gradio interface
141
  interface = gr.Interface(
142
  fn=generate_caption,
143
+ inputs=gr.inputs.Image(tool="editor", label="Upload an image or take a photo"), # Corrected usage
144
+ outputs="text",
145
  examples=sample_images,
146
  title="Image Captioning Model",
147
  description="Upload an image, select a sample image, or use your webcam to take a photo and generate a caption."