2024-05-30 00:21:58 +08:00
|
|
|
# flake8: noqa
|
|
|
|
# yapf: disable
|
2024-10-15 16:36:05 +08:00
|
|
|
import csv
|
2024-05-30 00:21:58 +08:00
|
|
|
import os
|
|
|
|
import os.path as osp
|
|
|
|
import re
|
|
|
|
from collections import defaultdict
|
|
|
|
from datetime import datetime
|
|
|
|
from itertools import product
|
|
|
|
|
2024-10-15 16:36:05 +08:00
|
|
|
import numpy as np
|
2024-06-28 14:16:34 +08:00
|
|
|
import pandas as pd
|
2024-05-30 00:21:58 +08:00
|
|
|
from mmengine import ConfigDict
|
|
|
|
from tabulate import tabulate
|
|
|
|
|
|
|
|
from opencompass.partitioners.sub_naive import remove_duplicate_pairs
|
2024-10-15 16:36:05 +08:00
|
|
|
from opencompass.summarizers.subjective.compass_arena import (
|
|
|
|
check_position_bias, model_abbr_from_cfg_used_in_summarizer)
|
|
|
|
from opencompass.summarizers.subjective.utils import (
|
|
|
|
get_judgeanswer_and_reference, get_outdir)
|
2024-05-30 00:21:58 +08:00
|
|
|
from opencompass.utils import dataset_abbr_from_cfg, model_abbr_from_cfg
|
|
|
|
|
|
|
|
|
2024-10-15 16:36:05 +08:00
|
|
|
def post_process_wildbench_pair(judgement: str):
|
|
|
|
pattern = r'\"choice\": \"(.*?)\"'
|
|
|
|
matched_result = re.findall(pattern, judgement)
|
|
|
|
if matched_result:
|
|
|
|
return matched_result[0]
|
2024-05-30 00:21:58 +08:00
|
|
|
else:
|
|
|
|
return None
|
|
|
|
|
2024-10-29 18:37:15 +08:00
|
|
|
MAP = {
|
|
|
|
'instruct': [
|
|
|
|
'总分',
|
|
|
|
'中文总分',
|
|
|
|
'英文总分',
|
2025-02-20 19:33:25 +08:00
|
|
|
'instruct/compassbench_2501_IF_en_chatIF_sub',
|
|
|
|
'instruct/compassbench_2501_IF_en_functionalIF_sub',
|
|
|
|
'instruct/compassbench_2501_IF_cn_chatIF_sub',
|
|
|
|
'instruct/compassbench_2501_IF_cn_functionalIF_sub',
|
2024-10-29 18:37:15 +08:00
|
|
|
],
|
|
|
|
'language': [
|
|
|
|
'总分',
|
|
|
|
'中文总分',
|
|
|
|
'英文总分',
|
2025-02-20 19:33:25 +08:00
|
|
|
'language/compassbench_v2501_language_zh_chat_sub',
|
|
|
|
'language/compassbench_v2501_language_zh_nlp_sub',
|
|
|
|
'language/compassbench_v2501_language_zh_creation_sub',
|
|
|
|
'language/compassbench_v2501_language_en_chat_sub',
|
|
|
|
'language/compassbench_v2501_language_en_nlp_sub',
|
|
|
|
'language/compassbench_v2501_language_en_creation_sub',
|
2024-10-29 18:37:15 +08:00
|
|
|
],
|
2025-02-20 19:33:25 +08:00
|
|
|
|
|
|
|
'code': [
|
2024-10-29 18:37:15 +08:00
|
|
|
'总分',
|
|
|
|
'中文总分',
|
|
|
|
'英文总分',
|
2025-02-20 19:33:25 +08:00
|
|
|
'code/compassbench_2501_code_arena_en_sub',
|
|
|
|
'code/compassbench_2501_code_arena_zh_sub',
|
2024-10-29 18:37:15 +08:00
|
|
|
],
|
|
|
|
}
|
2024-05-30 00:21:58 +08:00
|
|
|
|
|
|
|
|
|
|
|
class CompassBenchSummarizer:
|
|
|
|
"""Do the subjectivity analyze based on evaluation results.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
config (ConfigDict): The configuration object of the evaluation task.
|
|
|
|
It's expected to be filled out at runtime.
|
|
|
|
"""
|
|
|
|
|
2024-10-15 16:36:05 +08:00
|
|
|
def __init__(self, config: ConfigDict, check_pos_bias=False) -> None:
|
2024-05-30 00:21:58 +08:00
|
|
|
self.tasks = []
|
|
|
|
self.cfg = config
|
2024-07-05 22:11:37 +08:00
|
|
|
self.base_models = self.cfg['datasets'][0]['base_models']
|
|
|
|
self.compare_models = self.cfg['eval']['partitioner']['models']
|
2024-05-30 00:21:58 +08:00
|
|
|
self.judge_models = self.cfg.get('judge_models', None)
|
2024-10-29 18:37:15 +08:00
|
|
|
self.meta_judge_model = self.cfg.eval.partitioner.get(
|
|
|
|
'meta_judge_model', None)
|
2024-10-15 16:36:05 +08:00
|
|
|
self.judge_abbr = model_abbr_from_cfg(self.cfg['judge_models'][0])
|
|
|
|
self.judge_function = post_process_wildbench_pair
|
2024-05-30 00:21:58 +08:00
|
|
|
self.check_pos_bias = check_pos_bias
|
|
|
|
|
|
|
|
def get_score(self, time_str):
|
|
|
|
output_dir, results_folder = get_outdir(self.cfg, time_str)
|
2024-10-29 18:37:15 +08:00
|
|
|
model_combinations = list(
|
|
|
|
product(self.base_models, self.compare_models))
|
|
|
|
unique_combinations = remove_duplicate_pairs(
|
|
|
|
[combo for combo in model_combinations if combo[0] != combo[1]])
|
2024-05-30 00:21:58 +08:00
|
|
|
|
|
|
|
if self.meta_judge_model is not None:
|
|
|
|
self.judge_models.append(self.meta_judge_model)
|
|
|
|
|
|
|
|
scores = {}
|
|
|
|
for idx, judge_model_cfg in enumerate(self.judge_models):
|
|
|
|
judge_model = model_abbr_from_cfg(judge_model_cfg)
|
2024-10-15 16:36:05 +08:00
|
|
|
scores[judge_model] = {}
|
2024-05-30 00:21:58 +08:00
|
|
|
for dataset in self.cfg['datasets']:
|
|
|
|
dataset_abbr = dataset_abbr_from_cfg(dataset)
|
2024-10-29 18:37:15 +08:00
|
|
|
dataset_root, dataset_detail = (
|
|
|
|
dataset_abbr.split('/')[0],
|
|
|
|
dataset_abbr.split('/')[1],
|
|
|
|
)
|
2024-10-15 16:36:05 +08:00
|
|
|
scores[judge_model][dataset_abbr] = {}
|
2024-05-30 00:21:58 +08:00
|
|
|
for model_pair in unique_combinations:
|
2024-10-15 16:36:05 +08:00
|
|
|
base_model = model_pair[0]['abbr']
|
|
|
|
compare_model = model_pair[1]['abbr']
|
2024-05-30 00:21:58 +08:00
|
|
|
if idx == len(self.judge_models):
|
2024-10-29 18:37:15 +08:00
|
|
|
subdir = (base_model + '_' + compare_model +
|
|
|
|
'_summarized-by--' + judge_model)
|
2024-05-30 00:21:58 +08:00
|
|
|
else:
|
2024-10-29 18:37:15 +08:00
|
|
|
subdir = (base_model + '_' + compare_model +
|
|
|
|
'_judged-by--' + judge_model)
|
2024-05-30 00:21:58 +08:00
|
|
|
subdir_path = os.path.join(results_folder, subdir)
|
|
|
|
if not os.path.isdir(subdir_path):
|
|
|
|
print(subdir_path + ' is not exist! please check!')
|
2024-10-15 16:36:05 +08:00
|
|
|
scores[judge_model][dataset_abbr][compare_model] = None
|
2024-05-30 00:21:58 +08:00
|
|
|
continue
|
2024-10-15 16:36:05 +08:00
|
|
|
|
2024-10-29 18:37:15 +08:00
|
|
|
judged_answers, references = get_judgeanswer_and_reference(
|
|
|
|
dataset, subdir_path, self.judge_function)
|
2024-10-15 16:36:05 +08:00
|
|
|
win_base_model = defaultdict(float)
|
|
|
|
win_compare_model = defaultdict(float)
|
2024-10-29 18:37:15 +08:00
|
|
|
score_mapping = {
|
|
|
|
'A++': 1,
|
|
|
|
'A+': 0.5,
|
|
|
|
'A=B': 0,
|
|
|
|
'B+': -0.5,
|
|
|
|
'B++': -1,
|
|
|
|
}
|
2024-10-15 16:36:05 +08:00
|
|
|
cnt = defaultdict(float)
|
|
|
|
|
2024-10-29 18:37:15 +08:00
|
|
|
for judged_answer, reference in zip(
|
|
|
|
judged_answers, references):
|
2024-10-15 16:36:05 +08:00
|
|
|
if judged_answer not in score_mapping:
|
|
|
|
continue
|
|
|
|
else:
|
2024-10-29 18:37:15 +08:00
|
|
|
flag = (1 if reference['answer1'] == base_model
|
|
|
|
else -1)
|
|
|
|
score_1 = score_mapping[judged_answer] * flag
|
2024-10-15 16:36:05 +08:00
|
|
|
score_2 = -score_1
|
|
|
|
|
|
|
|
cnt[dataset_abbr] += 1
|
|
|
|
win_compare_model[dataset_abbr] += score_2
|
|
|
|
win_base_model[dataset_abbr] += score_1
|
|
|
|
|
|
|
|
for key, value in cnt.items():
|
|
|
|
win_base_model[key] = win_base_model[key] / value * 100
|
|
|
|
win_base_model[key] = round(win_base_model[key], 2)
|
2024-10-29 18:37:15 +08:00
|
|
|
win_compare_model[key] = (win_compare_model[key] /
|
|
|
|
value * 100)
|
|
|
|
win_compare_model[key] = round(win_compare_model[key],
|
|
|
|
2)
|
2024-10-15 16:36:05 +08:00
|
|
|
|
2024-10-29 18:37:15 +08:00
|
|
|
scores[judge_model][dataset_abbr][
|
|
|
|
compare_model] = win_compare_model
|
2024-10-15 16:36:05 +08:00
|
|
|
|
|
|
|
return scores
|
2024-05-30 00:21:58 +08:00
|
|
|
|
|
|
|
def summarize(
|
|
|
|
self,
|
|
|
|
time_str: str = datetime.now().strftime('%Y%m%d_%H%M%S'),
|
|
|
|
):
|
|
|
|
"""Summarize the subjectivity analysis based on evaluation results.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
time_str (str): Timestamp for file naming.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
pd.DataFrame: The summary results.
|
|
|
|
"""
|
2024-10-15 16:36:05 +08:00
|
|
|
scores = self.get_score(time_str)
|
|
|
|
output_dir, results_folder = get_outdir(self.cfg, time_str)
|
|
|
|
for judge_abbr, judge_scores in scores.items():
|
|
|
|
new_score = {}
|
|
|
|
for dataset_name, model_scores in judge_scores.items():
|
2024-10-29 18:37:15 +08:00
|
|
|
dataset_root, dataset_detail = (
|
|
|
|
dataset_name.split('/')[0],
|
|
|
|
dataset_name.split('/')[1],
|
|
|
|
)
|
2024-10-15 16:36:05 +08:00
|
|
|
if dataset_root not in new_score:
|
|
|
|
new_score[dataset_root] = {}
|
|
|
|
if '_en_' in dataset_detail:
|
|
|
|
for model_name, cate_score in model_scores.items():
|
|
|
|
if model_name not in new_score[dataset_root]:
|
|
|
|
new_score[dataset_root][model_name] = {}
|
|
|
|
if len(cate_score) == 0:
|
|
|
|
new_score[dataset_root][model_name]['英文总分'] = None
|
|
|
|
else:
|
2024-10-29 18:37:15 +08:00
|
|
|
new_score[dataset_root][model_name].update(
|
|
|
|
cate_score)
|
|
|
|
new_score[dataset_root][model_name]['英文总分'] = (
|
|
|
|
sum(cate_score.values()) / len(cate_score))
|
2024-10-15 16:36:05 +08:00
|
|
|
elif '_cn_' in dataset_detail or '_zh_' in dataset_detail:
|
|
|
|
for model_name, cate_score in model_scores.items():
|
|
|
|
if model_name not in new_score[dataset_root]:
|
|
|
|
new_score[dataset_root][model_name] = {}
|
|
|
|
if len(cate_score) == 0:
|
|
|
|
new_score[dataset_root][model_name]['中文总分'] = None
|
|
|
|
else:
|
2024-10-29 18:37:15 +08:00
|
|
|
new_score[dataset_root][model_name].update(
|
|
|
|
cate_score)
|
|
|
|
new_score[dataset_root][model_name]['中文总分'] = (
|
|
|
|
sum(cate_score.values()) / len(cate_score))
|
2024-10-15 16:36:05 +08:00
|
|
|
for dataset, models in new_score.items():
|
|
|
|
for model, details in models.items():
|
2024-10-29 18:37:15 +08:00
|
|
|
if (details['英文总分'] is not None
|
|
|
|
and details['中文总分'] is not None):
|
2024-10-15 16:36:05 +08:00
|
|
|
average_score = (details['英文总分'] + details['中文总分']) / 2
|
|
|
|
else:
|
|
|
|
average_score = None
|
|
|
|
details['总分'] = average_score
|
2024-05-30 00:21:58 +08:00
|
|
|
|
2024-10-15 16:36:05 +08:00
|
|
|
df = pd.DataFrame()
|
|
|
|
# Iterate over the MAP and new_score to populate the DataFrame
|
|
|
|
for category, headers in MAP.items():
|
|
|
|
category_data = []
|
|
|
|
for model, scores in new_score[category].items():
|
|
|
|
row_data = [model]
|
|
|
|
for header in headers:
|
|
|
|
# Append the score if available, otherwise append None
|
|
|
|
row_data.append(scores.get(header, None))
|
|
|
|
category_data.append(row_data)
|
|
|
|
|
|
|
|
# Create a DataFrame for the category and concatenate with the main DataFrame
|
2024-10-29 18:37:15 +08:00
|
|
|
new_headers = [category + '_' + item for item in headers]
|
|
|
|
category_df = pd.DataFrame(category_data,
|
|
|
|
columns=[category] + new_headers)
|
2024-10-15 16:36:05 +08:00
|
|
|
df = pd.concat([df, category_df.set_index(category)], axis=1)
|
|
|
|
|
|
|
|
df_transposed = df.T
|
|
|
|
|
2024-10-29 18:37:15 +08:00
|
|
|
output_filename = osp.join(
|
|
|
|
output_dir,
|
|
|
|
'summarized-by--' + judge_abbr + '-' + '-report.csv',
|
|
|
|
)
|
2024-10-15 16:36:05 +08:00
|
|
|
|
|
|
|
transposed_csv_file_path = output_filename
|
|
|
|
df_transposed.to_csv(transposed_csv_file_path)
|
|
|
|
print(f'save to {output_filename}')
|