Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -5,7 +5,7 @@ from collections import defaultdict
|
|
5 |
from gradio_leaderboard import Leaderboard, SelectColumns
|
6 |
|
7 |
# Load the DataFrame from the CSV file for detailed pass@k metrics
|
8 |
-
df = pd.read_csv('
|
9 |
|
10 |
# Ensure 'Model' and 'Scenario' columns are strings
|
11 |
df['Model'] = df['Model'].astype(str)
|
|
|
5 |
from gradio_leaderboard import Leaderboard, SelectColumns
|
6 |
|
7 |
# Load the DataFrame from the CSV file for detailed pass@k metrics
|
8 |
+
df = pd.read_csv('results.csv')
|
9 |
|
10 |
# Ensure 'Model' and 'Scenario' columns are strings
|
11 |
df['Model'] = df['Model'].astype(str)
|