File size: 2,200 Bytes
baa7db6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
from src.display.utils import EVAL_COLS, EVAL_TYPES
from src.envs import EVAL_REQUESTS_PATH
from src.populate import get_evaluation_queue_df
from src.submission.submit import add_new_eval
import gradio as gr

def show_submit_page(index: int):
    (
        finished_eval_queue_df,
        running_eval_queue_df,
        pending_eval_queue_df,
    ) = get_evaluation_queue_df(EVAL_REQUESTS_PATH, EVAL_COLS)
    with gr.TabItem("🚀 Submit! ", elem_id="llm-benchmark-tab-table", id=index):
        
        with gr.Column():
            with gr.Accordion(
                f"✅ Finished Evaluations ({len(finished_eval_queue_df)})",
                open=False,
            ):
                with gr.Row():
                    finished_eval_table = gr.components.Dataframe(
                        value=finished_eval_queue_df,
                        headers=EVAL_COLS,
                        datatype=EVAL_TYPES,
                        row_count=5,
                    )

            with gr.Accordion(
                f"⏳ Pending Evaluation Queue ({len(pending_eval_queue_df)})",
                open=False,
            ):
                with gr.Row():
                    pending_eval_table = gr.components.Dataframe(
                        value=pending_eval_queue_df,
                        headers=EVAL_COLS,
                        datatype=EVAL_TYPES,
                        row_count=5,
                    )

        with gr.Row():
            gr.Markdown("# ✉️✨ Submit your model!", elem_classes="markdown-text")

        with gr.Row():
            with gr.Column():
                model_name_textbox = gr.Textbox(label="Huggingface Model")
                link_to_model_blog = gr.Textbox(label="Model release blog / Technical report")

        submit_button = gr.Button("Submit Model")
        submission_result = gr.Markdown()
        submit_button.click(
            add_new_eval,
            [
                model_name_textbox,
                link_to_model_blog
            ],
            submission_result,
        )

        with gr.Row():
            gr.Markdown('# ✉️✨ Submit your task <a href="https://github.com">here!</a>', elem_classes="markdown-text")