Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -56,7 +56,7 @@ def load_leaderboard_table_csv(filename, add_hyperlink=True):
|
|
56 |
item = {}
|
57 |
for h, v in zip(heads, row):
|
58 |
if h != "Model" and h != "Link" and h != "Language Model" and h != "Open Source":
|
59 |
-
item[h] =
|
60 |
else:
|
61 |
item[h] = v
|
62 |
if add_hyperlink:
|
|
|
56 |
item = {}
|
57 |
for h, v in zip(heads, row):
|
58 |
if h != "Model" and h != "Link" and h != "Language Model" and h != "Open Source":
|
59 |
+
item[h] = float(v)
|
60 |
else:
|
61 |
item[h] = v
|
62 |
if add_hyperlink:
|