szili2011 commited on
Commit
e3cbdd0
·
verified ·
1 Parent(s): f2d10dd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -67,7 +67,7 @@ def analyze_images(img1, img2):
67
  iface = gr.Interface(
68
  fn=analyze_images,
69
  inputs=[gr.Image(type="pil"), gr.Image(type="pil")],
70
- outputs=[gr.outputs.Textbox(label="Same Person?"), gr.outputs.Image(label="Comparison Chart")],
71
  title="Face and Body Similarity Analyzer",
72
  description="Upload two images to analyze if they contain the same person and compare body features."
73
  )
 
67
  iface = gr.Interface(
68
  fn=analyze_images,
69
  inputs=[gr.Image(type="pil"), gr.Image(type="pil")],
70
+ outputs = [gr.Textbox(label="Same Person?"), gr.Image(label="Comparison Chart")],
71
  title="Face and Body Similarity Analyzer",
72
  description="Upload two images to analyze if they contain the same person and compare body features."
73
  )