Update app.py
Browse files
app.py
CHANGED
|
@@ -60,7 +60,7 @@ def get_dataframe_from_results(eval_results, split):
|
|
| 60 |
df = pd.DataFrame(local_df)
|
| 61 |
df = df.sort_values(by=["Score (%)"], ascending=False)
|
| 62 |
|
| 63 |
-
df["Score (%)"] = df["Score (%)"].multiply(100).round(2)
|
| 64 |
|
| 65 |
return df
|
| 66 |
|
|
@@ -293,7 +293,7 @@ with demo:
|
|
| 293 |
refresh_button = gr.Button("Refresh")
|
| 294 |
refresh_button.click(refresh, inputs=[], outputs=[leaderboard_table_test])
|
| 295 |
|
| 296 |
-
with gr.Accordion("
|
| 297 |
with gr.Row():
|
| 298 |
gr.Markdown(SUBMISSION_TEXT, elem_classes="markdown-text")
|
| 299 |
with gr.Row():
|
|
|
|
| 60 |
df = pd.DataFrame(local_df)
|
| 61 |
df = df.sort_values(by=["Score (%)"], ascending=False)
|
| 62 |
|
| 63 |
+
#df["Score (%)"] = df["Score (%)"].multiply(100).round(2)
|
| 64 |
|
| 65 |
return df
|
| 66 |
|
|
|
|
| 293 |
refresh_button = gr.Button("Refresh")
|
| 294 |
refresh_button.click(refresh, inputs=[], outputs=[leaderboard_table_test])
|
| 295 |
|
| 296 |
+
with gr.Accordion(""):
|
| 297 |
with gr.Row():
|
| 298 |
gr.Markdown(SUBMISSION_TEXT, elem_classes="markdown-text")
|
| 299 |
with gr.Row():
|