Chris4K commited on
Commit
f45e0ba
·
verified ·
1 Parent(s): c413158

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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.Text(),
 
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
  )