bgaspra commited on
Commit
3358a37
·
verified ·
1 Parent(s): 6a59935

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -11
app.py CHANGED
@@ -115,21 +115,15 @@ def gradio_interface(input_image):
115
  recommendations = get_recommendations_and_display("input_image.jpg")
116
  outputs = []
117
  for i, rec in enumerate(recommendations):
118
- outputs.append((f"Recommendation {i+1}", rec["Image"], rec["Model Name"], rec["Distance"]))
119
  return outputs
120
 
121
- # Gradio interface function
122
- def gradio_app(image):
123
- results = gradio_interface(image)
124
- return results
125
-
126
  # Create the Gradio app
127
  iface = gr.Interface(
128
- fn=gradio_app,
129
- inputs=gr.inputs.Image(type="pil"),
130
- outputs=[gr.outputs.Image(type="pil", label=f"Recommendation {i+1} Image") for i in range(5)] +
131
- [gr.outputs.Textbox(label=f"Recommendation {i+1} Model Name") for i in range(5)] +
132
- [gr.outputs.Textbox(label=f"Recommendation {i+1} Distance") for i in range(5)],
133
  title="Image Recommendation System",
134
  description="Upload an image to get recommendations based on the image"
135
  )
 
115
  recommendations = get_recommendations_and_display("input_image.jpg")
116
  outputs = []
117
  for i, rec in enumerate(recommendations):
118
+ outputs.append((rec["Image"], f"{rec['Model Name']} (Distance: {rec['Distance']:.2f})"))
119
  return outputs
120
 
 
 
 
 
 
121
  # Create the Gradio app
122
  iface = gr.Interface(
123
+ fn=gradio_interface,
124
+ inputs=gr.Image(type="pil"),
125
+ outputs=[gr.Image(label=f"Recommendation {i+1} Image") for i in range(5)] +
126
+ [gr.Textbox(label=f"Recommendation {i+1} Details") for i in range(5)],
 
127
  title="Image Recommendation System",
128
  description="Upload an image to get recommendations based on the image"
129
  )