Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -216,7 +216,8 @@ iface = gr.Interface(
|
|
| 216 |
gr.Slider(1, 10, step=1, value=5, label="Top K")
|
| 217 |
],
|
| 218 |
#outputs=[gr.DataFrame(label="Results"), gr.DataFrame(label="Statistics")] * len(MODELS),
|
| 219 |
-
outputs=gr.
|
|
|
|
| 220 |
title="Embedding Comparison Tool",
|
| 221 |
description="Compare different embedding models and retrieval strategies"
|
| 222 |
)
|
|
|
|
| 216 |
gr.Slider(1, 10, step=1, value=5, label="Top K")
|
| 217 |
],
|
| 218 |
#outputs=[gr.DataFrame(label="Results"), gr.DataFrame(label="Statistics")] * len(MODELS),
|
| 219 |
+
outputs = [gr.DataFrame(label=f"Results {i+1}") for i in range(len(MODELS))] + \
|
| 220 |
+
[gr.DataFrame(label=f"Statistics {i+1}") for i in range(len(MODELS))],
|
| 221 |
title="Embedding Comparison Tool",
|
| 222 |
description="Compare different embedding models and retrieval strategies"
|
| 223 |
)
|