Amr Keleg commited on
Commit
1c6beae
·
1 Parent(s): 2235669

Fix bug in leaderboard rendering

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -90,7 +90,7 @@ with tab1:
90
  "Recall": macro_avg_recall,
91
  "Precision": macro_avg_precision,
92
  "F1 score": macro_avg_f1,
93
- "Inference Method": "row["inference_function"],
94
  "URL": f"https://huggingface.co/{row['model_name']}"
95
  if ("shared task team" not in row["model_name"])
96
  else SHARED_TASK_TEAMS[row["model_name"].split(" (")[0]],
 
90
  "Recall": macro_avg_recall,
91
  "Precision": macro_avg_precision,
92
  "F1 score": macro_avg_f1,
93
+ "Inference Method": row["inference_function"],
94
  "URL": f"https://huggingface.co/{row['model_name']}"
95
  if ("shared task team" not in row["model_name"])
96
  else SHARED_TASK_TEAMS[row["model_name"].split(" (")[0]],