Spaces:
Running
Running
jasonshaoshun
commited on
Commit
·
f6dfabd
1
Parent(s):
009db1f
debug
Browse files
app.py
CHANGED
@@ -402,10 +402,11 @@ def init_leaderboard_mib_subgraph(dataframe, track):
|
|
402 |
benchmarks = set()
|
403 |
models = set()
|
404 |
|
|
|
405 |
# Extract unique benchmarks and models from column names
|
406 |
for col in result_columns:
|
407 |
print(f"col is {col}")
|
408 |
-
benchmark, model = col.split('
|
409 |
benchmarks.add(benchmark)
|
410 |
models.add(model)
|
411 |
print(f"benchmark is {benchmark} and model is {model}")
|
|
|
402 |
benchmarks = set()
|
403 |
models = set()
|
404 |
|
405 |
+
print(f"\nDebugging Result Columns: {result_columns}")
|
406 |
# Extract unique benchmarks and models from column names
|
407 |
for col in result_columns:
|
408 |
print(f"col is {col}")
|
409 |
+
benchmark, model = col.split('_')
|
410 |
benchmarks.add(benchmark)
|
411 |
models.add(model)
|
412 |
print(f"benchmark is {benchmark} and model is {model}")
|