Spaces:
Runtime error
Runtime error
Added missing file from previous commit
Browse files
app.py
CHANGED
@@ -57,6 +57,7 @@ leaderboard_df = original_df.copy()
|
|
57 |
finished_eval_queue_df,
|
58 |
running_eval_queue_df,
|
59 |
pending_eval_queue_df,
|
|
|
60 |
) = get_evaluation_queue_df(EVAL_REQUESTS_PATH, EVAL_COLS)
|
61 |
|
62 |
|
@@ -285,6 +286,18 @@ with demo:
|
|
285 |
datatype=EVAL_TYPES,
|
286 |
row_count=5,
|
287 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
with gr.Row():
|
289 |
gr.Markdown("# ✉️✨ Submit your model here!", elem_classes="markdown-text")
|
290 |
|
|
|
57 |
finished_eval_queue_df,
|
58 |
running_eval_queue_df,
|
59 |
pending_eval_queue_df,
|
60 |
+
failed_eval_queue_df
|
61 |
) = get_evaluation_queue_df(EVAL_REQUESTS_PATH, EVAL_COLS)
|
62 |
|
63 |
|
|
|
286 |
datatype=EVAL_TYPES,
|
287 |
row_count=5,
|
288 |
)
|
289 |
+
|
290 |
+
with gr.Accordion(
|
291 |
+
f"❌ Failed Evaluation Queue ({len(failed_eval_queue_df)})",
|
292 |
+
open=False,
|
293 |
+
):
|
294 |
+
with gr.Row():
|
295 |
+
failed_eval_table = gr.components.Dataframe(
|
296 |
+
value=pending_eval_queue_df,
|
297 |
+
headers=EVAL_COLS,
|
298 |
+
datatype=EVAL_TYPES,
|
299 |
+
row_count=5,
|
300 |
+
)
|
301 |
with gr.Row():
|
302 |
gr.Markdown("# ✉️✨ Submit your model here!", elem_classes="markdown-text")
|
303 |
|