Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -17,7 +17,7 @@ explanation_data = {
|
|
17 |
"Adjusted Robustness Score"
|
18 |
],
|
19 |
"Description": [
|
20 |
-
"A custom MC task where the model is asked to match a brand name to its generic counterpart and vice versa. This task is designed to test the model's ability to understand drug name synonyms. Gemini results are missing due to their safety filters",
|
21 |
"G2B Refers to the 'Generic' to 'Brand' name swap. This is model accuracy on MedMCQA task where generic drug names are substituted with brand names.",
|
22 |
"Model accuracy on MedMCQA task with original data. (Only includes questions that overlap with the g2b dataset)",
|
23 |
"Difference in MedMCQA accuracy for swapped and non-swapped datasets, highlighting the impact of G2B drug name substitution on performance.",
|
@@ -379,6 +379,14 @@ with gr.Blocks(css="custom.css") as demo:
|
|
379 |
interactive=False,
|
380 |
elem_id="leaderboard-table"
|
381 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
382 |
|
383 |
def update_leaderboard(search_query):
|
384 |
filtered_df = df[df["Model"].str.contains(search_query, case=False)]
|
|
|
17 |
"Adjusted Robustness Score"
|
18 |
],
|
19 |
"Description": [
|
20 |
+
"A custom MC task where the model is asked to match a brand name to its generic counterpart and vice versa. This task is designed to test the model's ability to understand drug name synonyms. *Gemini results are missing due to their safety filters*",
|
21 |
"G2B Refers to the 'Generic' to 'Brand' name swap. This is model accuracy on MedMCQA task where generic drug names are substituted with brand names.",
|
22 |
"Model accuracy on MedMCQA task with original data. (Only includes questions that overlap with the g2b dataset)",
|
23 |
"Difference in MedMCQA accuracy for swapped and non-swapped datasets, highlighting the impact of G2B drug name substitution on performance.",
|
|
|
379 |
interactive=False,
|
380 |
elem_id="leaderboard-table"
|
381 |
)
|
382 |
+
with gr.Row():
|
383 |
+
gr.Dataframe(
|
384 |
+
value=explanation_df,
|
385 |
+
headers="keys",
|
386 |
+
datatype=["str", "str"],
|
387 |
+
interactive=False,
|
388 |
+
label="Explanation of Scores"
|
389 |
+
)
|
390 |
|
391 |
def update_leaderboard(search_query):
|
392 |
filtered_df = df[df["Model"].str.contains(search_query, case=False)]
|