Update app.py
Browse files
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((
|
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=
|
129 |
-
inputs=gr.
|
130 |
-
outputs=[gr.
|
131 |
-
[gr.
|
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 |
)
|