Spaces:
Running
Running
benediktstroebl
commited on
Commit
·
e10e28c
1
Parent(s):
d45ebbb
update
Browse files
app.py
CHANGED
@@ -224,14 +224,16 @@ with gr.Blocks() as demo:
|
|
224 |
with gr.Tab("USACO"):
|
225 |
with gr.Row():
|
226 |
with gr.Column(scale=2):
|
|
|
|
|
227 |
Leaderboard(
|
228 |
value=parse_json_files(os.path.join(abs_path, "evals_live"), 'usaco'),
|
229 |
-
select_columns=SelectColumns(
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
),
|
234 |
-
hide_columns=config.USACO_HIDE_COLUMNS,
|
235 |
# search_columns=config.USACO_SEARCH_COLUMNS,
|
236 |
)
|
237 |
with gr.Row():
|
|
|
224 |
with gr.Tab("USACO"):
|
225 |
with gr.Row():
|
226 |
with gr.Column(scale=2):
|
227 |
+
print(parse_json_files(os.path.join(abs_path, "evals_live"), 'usaco').columns)
|
228 |
+
print(parse_json_files(os.path.join(abs_path, "evals_live"), 'mlagentbench').columns)
|
229 |
Leaderboard(
|
230 |
value=parse_json_files(os.path.join(abs_path, "evals_live"), 'usaco'),
|
231 |
+
# select_columns=SelectColumns(
|
232 |
+
# default_selection=config.USACO_ON_LOAD_COLUMNS + ["Verified"],
|
233 |
+
# cant_deselect=["Agent Name"],
|
234 |
+
# label="Select Columns to Display:",
|
235 |
+
# ),
|
236 |
+
# hide_columns=config.USACO_HIDE_COLUMNS,
|
237 |
# search_columns=config.USACO_SEARCH_COLUMNS,
|
238 |
)
|
239 |
with gr.Row():
|