iamrobotbear commited on
Commit
144304e
·
1 Parent(s): 0b76391
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -76,8 +76,8 @@ iface = gr.Interface(
76
  title="Image Captioning and Image-Text Matching",
77
 
78
  # Gradio interface with Image input to receive an image and its file name
79
- image_input = gr.inputs.Image(label="Upload Image", image_mode='RGB', source="upload")
80
- output_df = gr.outputs.Dataframe(label="Results") # Corrected syntax
81
  output_csv = gr.outputs.File(label="Download CSV")
82
 
83
  iface = gr.Interface(
 
76
  title="Image Captioning and Image-Text Matching",
77
 
78
  # Gradio interface with Image input to receive an image and its file name
79
+ image_input = gr.inputs.Image(label="Upload Image", image_mode='RGB') # Corrected syntax
80
+ output_df = gr.outputs.Dataframe(label="Results")
81
  output_csv = gr.outputs.File(label="Download CSV")
82
 
83
  iface = gr.Interface(