geoalgo commited on
Commit
47afef3
·
1 Parent(s): 653989f
Files changed (1) hide show
  1. main.py +3 -0
main.py CHANGED
@@ -16,6 +16,9 @@ df_core["Average ⬆️"] = df_core.loc[:, benchmarks_core].mean(axis=1)
16
  df_core.sort_values(by="Average ⬆️", ascending=False, inplace=True)
17
 
18
  df_instruction_tuning = pd.read_csv("results_instruction_tuning.csv.zip")
 
 
 
19
  df_instruction_tuning_pivot = df_instruction_tuning.pivot_table(
20
  index="model_B", columns="benchmark", values="preference"
21
  )
 
16
  df_core.sort_values(by="Average ⬆️", ascending=False, inplace=True)
17
 
18
  df_instruction_tuning = pd.read_csv("results_instruction_tuning.csv.zip")
19
+ df_instruction_tuning.model_B = df_instruction_tuning.model_B.apply(
20
+ lambda s: s.split("/")[-1]
21
+ )
22
  df_instruction_tuning_pivot = df_instruction_tuning.pivot_table(
23
  index="model_B", columns="benchmark", values="preference"
24
  )