Update app.py
Browse files
app.py
CHANGED
@@ -333,7 +333,7 @@ css = """
|
|
333 |
.v_check div { display: block !important; }
|
334 |
.v_check label {
|
335 |
max-width: 100%; /* 전체 너비 유지 */
|
336 |
-
padding:
|
337 |
margin-bottom: 60px; /* 라벨 간 간격 설정 */
|
338 |
border: 1px solid transparent !important;
|
339 |
letter-spacing: -1px !important; /* 자간 좁게 설정*/
|
@@ -403,21 +403,21 @@ with gr.Blocks(css=css, fill_width=True) as demo:
|
|
403 |
with gr.Tab("BGE"):
|
404 |
with gr.Row():
|
405 |
kpi_checkbox1 = gr.CheckboxGroup(choices=[], interactive=True, elem_classes="v_check", container=False, min_width=5, scale=1)
|
406 |
-
with gr.Column(scale=
|
407 |
kpi_table1 = gr.HTML(label="BGE 결과")
|
408 |
|
409 |
with gr.Group():
|
410 |
with gr.Tab("SBERT-snunlp"):
|
411 |
with gr.Row():
|
412 |
kpi_checkbox2 = gr.CheckboxGroup(choices=[], interactive=True, elem_classes="v_check", container=False, min_width=5, scale=1)
|
413 |
-
with gr.Column(scale=
|
414 |
kpi_table2 = gr.HTML(label="SBERT-snunlp 결과")
|
415 |
|
416 |
with gr.Group():
|
417 |
with gr.Tab("SBERT-jhgan"):
|
418 |
with gr.Row():
|
419 |
kpi_checkbox3 = gr.CheckboxGroup(choices=[], interactive=True, elem_classes="v_check", container=False, min_width=5, scale=1)
|
420 |
-
with gr.Column(scale=
|
421 |
kpi_table3 = gr.HTML(label="SBERT-jhgan 결과")
|
422 |
|
423 |
with gr.Row():
|
|
|
333 |
.v_check div { display: block !important; }
|
334 |
.v_check label {
|
335 |
max-width: 100%; /* 전체 너비 유지 */
|
336 |
+
padding: 3px; /* 내부 여백 조정 */
|
337 |
margin-bottom: 60px; /* 라벨 간 간격 설정 */
|
338 |
border: 1px solid transparent !important;
|
339 |
letter-spacing: -1px !important; /* 자간 좁게 설정*/
|
|
|
403 |
with gr.Tab("BGE"):
|
404 |
with gr.Row():
|
405 |
kpi_checkbox1 = gr.CheckboxGroup(choices=[], interactive=True, elem_classes="v_check", container=False, min_width=5, scale=1)
|
406 |
+
with gr.Column(scale=11):
|
407 |
kpi_table1 = gr.HTML(label="BGE 결과")
|
408 |
|
409 |
with gr.Group():
|
410 |
with gr.Tab("SBERT-snunlp"):
|
411 |
with gr.Row():
|
412 |
kpi_checkbox2 = gr.CheckboxGroup(choices=[], interactive=True, elem_classes="v_check", container=False, min_width=5, scale=1)
|
413 |
+
with gr.Column(scale=11):
|
414 |
kpi_table2 = gr.HTML(label="SBERT-snunlp 결과")
|
415 |
|
416 |
with gr.Group():
|
417 |
with gr.Tab("SBERT-jhgan"):
|
418 |
with gr.Row():
|
419 |
kpi_checkbox3 = gr.CheckboxGroup(choices=[], interactive=True, elem_classes="v_check", container=False, min_width=5, scale=1)
|
420 |
+
with gr.Column(scale=11):
|
421 |
kpi_table3 = gr.HTML(label="SBERT-jhgan 결과")
|
422 |
|
423 |
with gr.Row():
|