Update app.py
Browse files
app.py
CHANGED
@@ -344,22 +344,27 @@ with gr.Blocks(css=css) as demo:
|
|
344 |
with gr.Row():
|
345 |
kpi_checkbox = gr.CheckboxGroup(choices=[], interactive=True, elem_classes="v_check", container=False, min_width=5, scale=1)
|
346 |
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
|
|
|
|
|
|
|
|
|
|
363 |
|
364 |
with gr.Row():
|
365 |
gr.Column(scale=2)
|
|
|
344 |
with gr.Row():
|
345 |
kpi_checkbox = gr.CheckboxGroup(choices=[], interactive=True, elem_classes="v_check", container=False, min_width=5, scale=1)
|
346 |
|
347 |
+
with gr.Group():
|
348 |
+
gr.Markdown("BGE")
|
349 |
+
kpi_table1 = gr.Dataframe(
|
350 |
+
scale=33, value=[], show_label=False, max_height=650,
|
351 |
+
column_widths=[80, 180, 160, 70],
|
352 |
+
datatype=["str", "str", "str", "str"]
|
353 |
+
)
|
354 |
+
with gr.Group():
|
355 |
+
gr.Markdown("SBERT-snunlp")
|
356 |
+
kpi_table2 = gr.Dataframe(
|
357 |
+
scale=33, value=[], show_label=False, max_height=650,
|
358 |
+
column_widths=[80, 180, 160, 70],
|
359 |
+
datatype=["str", "str", "str", "str"]
|
360 |
+
)
|
361 |
+
with gr.Group():
|
362 |
+
gr.Markdown("SBERT-jhgan")
|
363 |
+
kpi_table3 = gr.Dataframe(
|
364 |
+
scale=33, value=[], show_label=False, max_height=650,
|
365 |
+
column_widths=[80, 180, 160, 70],
|
366 |
+
datatype=["str", "str", "str", "str"]
|
367 |
+
)
|
368 |
|
369 |
with gr.Row():
|
370 |
gr.Column(scale=2)
|