CultriX commited on
Commit
c77e3cd
·
verified ·
1 Parent(s): 99af63c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
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: