Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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()
|