cgeorgiaw HF Staff commited on
Commit
abc721e
·
1 Parent(s): 8b38a76

still trying to make the leaderboard

Browse files
Files changed (1) hide show
  1. app.py +0 -2
app.py CHANGED
@@ -31,8 +31,6 @@ def get_leaderboard():
31
  df = pd.DataFrame(ds)
32
 
33
  df.rename(columns={'submission_time': 'submission time', 'problem_type': 'problem type'}, inplace=True)
34
- df['user'] = df['user'].apply(lambda x: f'<a href="https://huggingface.co/{x}">{x}</a>')
35
- df = df.to_html(escape=False, render_links=True)
36
 
37
  score_field = "score" if "score" in df.columns else "objective" # fallback
38
 
 
31
  df = pd.DataFrame(ds)
32
 
33
  df.rename(columns={'submission_time': 'submission time', 'problem_type': 'problem type'}, inplace=True)
 
 
34
 
35
  score_field = "score" if "score" in df.columns else "objective" # fallback
36