rwitz commited on
Commit
d5abc70
·
1 Parent(s): c103af9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -164,7 +164,7 @@ def generate_leaderboard():
164
  leaderboard_data = pd.DataFrame(global_elo_ratings)
165
 
166
  # Rename columns to 'Chatbot' and 'ELO Score'
167
- leaderboard_data.columns = ['Chatbot', 'ELO Score']
168
 
169
  # Round the ELO Score to the nearest whole number
170
  leaderboard_data['ELO Score'] = leaderboard_data['ELO Score'].round()
 
164
  leaderboard_data = pd.DataFrame(global_elo_ratings)
165
 
166
  # Rename columns to 'Chatbot' and 'ELO Score'
167
+ leaderboard_data.columns = ['Chatbot', 'ELO Score','Games Played']
168
 
169
  # Round the ELO Score to the nearest whole number
170
  leaderboard_data['ELO Score'] = leaderboard_data['ELO Score'].round()