Corey Morris commited on
Commit
df074bd
·
1 Parent(s): 3a8762c

Two files being loaded and results displayed side by side

Browse files
Files changed (1) hide show
  1. app.py +17 -8
app.py CHANGED
@@ -4,17 +4,26 @@ import numpy as np
4
  import json
5
  import requests
6
 
 
 
 
7
 
8
- # load from remote json file
9
- FILE_URL = "https://raw.githubusercontent.com/EleutherAI/lm-evaluation-harness/master/results/llama/llama-30B/llama-30B_mmlu_5-shot.json"
10
- response = requests.get(FILE_URL)
11
- data = response.json()
 
12
 
13
- # Create a DataFrame from the results dictionary
14
- data = pd.DataFrame(data['results']).T
 
15
 
16
- # Sort the DataFrame by 'acc' column
17
- data = data.sort_values('acc', ascending=False)
 
 
 
 
18
 
19
  def show_leaderboard():
20
  # Convert dataframe to html so that it can be displayed properly in Gradio
 
4
  import json
5
  import requests
6
 
7
+ # URLs for the two JSON files
8
+ FILE_URL_1 = "https://raw.githubusercontent.com/EleutherAI/lm-evaluation-harness/master/results/llama/llama-30B/llama-30B_mmlu_5-shot.json"
9
+ FILE_URL_2 = "https://raw.githubusercontent.com/EleutherAI/lm-evaluation-harness/master/results/llama/llama-13B/llama-13B_mmlu_5-shot.json"
10
 
11
+ # Load data from both URLs
12
+ response1 = requests.get(FILE_URL_1)
13
+ data1 = response1.json()
14
+ response2 = requests.get(FILE_URL_2)
15
+ data2 = response2.json()
16
 
17
+ # Convert data from both URLs into DataFrames
18
+ data1_df = pd.DataFrame(data1['results']).T
19
+ data2_df = pd.DataFrame(data2['results']).T
20
 
21
+ # Rename 'acc' column to respective file names
22
+ data1_df = data1_df.rename(columns={'acc': 'acc_file_1'})
23
+ data2_df = data2_df.rename(columns={'acc': 'acc_file_2'})
24
+
25
+ # Merge the dataframes on index (Here index is the sub-test names)
26
+ data = pd.merge(data1_df['acc_file_1'], data2_df['acc_file_2'], left_index=True, right_index=True)
27
 
28
  def show_leaderboard():
29
  # Convert dataframe to html so that it can be displayed properly in Gradio