ling99 commited on
Commit
49a7469
·
verified ·
1 Parent(s): a618ddf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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] = int(v)
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: