Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -99,6 +99,7 @@ def calculate_highest_combined_score(data, column):
|
|
99 |
|
100 |
# Function to display the results of the highest combined scores
|
101 |
def display_highest_combined_scores(data):
|
|
|
102 |
with st.spinner('Calculating highest combined scores...'):
|
103 |
results = [calculate_highest_combined_score(data, col) for col in score_columns]
|
104 |
for column, top_combinations in results:
|
|
|
99 |
|
100 |
# Function to display the results of the highest combined scores
|
101 |
def display_highest_combined_scores(data):
|
102 |
+
score_columns = ['Average', 'AGIEval', 'GPT4All', 'TruthfulQA', 'Bigbench']
|
103 |
with st.spinner('Calculating highest combined scores...'):
|
104 |
results = [calculate_highest_combined_score(data, col) for col in score_columns]
|
105 |
for column, top_combinations in results:
|