From 188d20e9e50b576e489b07e4f9684c679d7d0cb7 Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Mon, 16 Oct 2023 10:53:42 -0700 Subject: [PATCH] Reduce the evaluation table height --- modules/training.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/training.py b/modules/training.py index a320d842..84c841fb 100644 --- a/modules/training.py +++ b/modules/training.py @@ -156,7 +156,7 @@ def create_ui(): with gr.Column(): evaluation_log = gr.Markdown(value='') - evaluation_table = gr.Dataframe(value=generate_markdown_table(), interactive=True, height=20000, elem_id='evaluation-table') + evaluation_table = gr.Dataframe(value=generate_markdown_table(), interactive=True, height=2000, elem_id='evaluation-table') with gr.Row(): save_comments = gr.Button('Save comments', elem_classes="small-button", interactive=not mu) refresh_table = gr.Button('Refresh the table', elem_classes="small-button", interactive=not mu)