Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -20,6 +20,13 @@ with gr.Blocks() as demo:
|
|
20 |
with gr.Tabs(elem_classes='tab-buttons') as tabs:
|
21 |
with gr.TabItem('🏅 Medical LLM Leaderboard', elem_id='main', id=0):
|
22 |
gr.Markdown(LEADERBOARD_MD['MAIN'])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
_, check_box = BUILD_L1_DF(results, MAIN_FIELDS)
|
24 |
table = generate_table(results, DEFAULT_BENCH)
|
25 |
table['Rank'] = list(range(1, len(table) + 1))
|
|
|
20 |
with gr.Tabs(elem_classes='tab-buttons') as tabs:
|
21 |
with gr.TabItem('🏅 Medical LLM Leaderboard', elem_id='main', id=0):
|
22 |
gr.Markdown(LEADERBOARD_MD['MAIN'])
|
23 |
+
|
24 |
+
gr.Image(
|
25 |
+
value=IAMGE_PATH,
|
26 |
+
label='Overview of our evaluation scenarios, which includes eleven existing datasets covering five
|
27 |
+
non-clinical machine learning tasks and six novel datasets covering six complex clinical tasks (gray-highlighted text).',
|
28 |
+
)
|
29 |
+
|
30 |
_, check_box = BUILD_L1_DF(results, MAIN_FIELDS)
|
31 |
table = generate_table(results, DEFAULT_BENCH)
|
32 |
table['Rank'] = list(range(1, len(table) + 1))
|