Skip to content

Commit

Permalink
[Feature] Add LiveStemBench Dataset (#1794)
Browse files Browse the repository at this point in the history
* [Fix] Fix vllm max_seq_len parameter transfer

* [Fix] Fix vllm max_seq_len parameter transfer

* Add livestembench dataset

* Add livestembench dataset

* Add livestembench dataset

* Update livestembench_gen_3e3c50.py

* Update eval_livestembench.py

* Update eval_livestembench.py
  • Loading branch information
liushz authored Dec 31, 2024
1 parent fc0556e commit 9c980cb
Show file tree
Hide file tree
Showing 6 changed files with 277 additions and 0 deletions.
66 changes: 66 additions & 0 deletions configs/eval_livestembench.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
from opencompass.models import OpenAISDK
from mmengine.config import read_base


with read_base():
# 选择一个数据集列表
from opencompass.configs.datasets.livestembench.livestembench_gen_3e3c50 import livestembench_datasets

# 选择一个感兴趣的模型
from opencompass.configs.models.qwen2_5.lmdeploy_qwen2_5_7b_instruct import models as qwen2_5_7b_instruct_lmdeploy_model
from opencompass.configs.models.qwen2_5.lmdeploy_qwen2_5_72b_instruct import models as qwen2_5_72b_instruct_lmdeploy_model

datasets = sum([v for k, v in locals().items() if k.endswith('_datasets')], [])
models = [*qwen2_5_7b_instruct_lmdeploy_model, *qwen2_5_72b_instruct_lmdeploy_model]

# Judge 模型配置
api_meta_template = dict(round=[
dict(role='HUMAN', api_role='HUMAN'),
dict(role='BOT', api_role='BOT', generate=True),
], )

judge_cfg = dict(
abbr='qwen2-5-72b-instruct',
type=OpenAISDK,
path='YOUR_SERVER_MODEL_NAME', # 你的部署的模型名称
key='None',
openai_api_base=[
'http://localhost:23333/v1', # 你的模型部署的地址
],
meta_template=api_meta_template,
query_per_second=16,
batch_size=16,
temperature=0.001,
max_completion_tokens=32768,
)

for dataset in datasets:
dataset['eval_cfg']['evaluator']['judge_cfg'] = judge_cfg


# -------------Inferen Stage ----------------------------------------

from opencompass.runners import LocalRunner
from opencompass.partitioners import NumWorkerPartitioner, NaivePartitioner
from opencompass.tasks import OpenICLInferTask, OpenICLEvalTask


infer = dict(
partitioner=dict(type=NumWorkerPartitioner, num_worker=8),
runner=dict(
type=LocalRunner,
max_num_workers=8,
task=dict(type=OpenICLInferTask)
),
)

eval = dict(
partitioner=dict(type=NaivePartitioner, n=8),
runner=dict(
type=LocalRunner,
max_num_workers=256,
task=dict(type=OpenICLEvalTask),
),
)

work_dir = './outputs/livestembench'
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from mmengine.config import read_base

with read_base():
from .livestembench_gen_3e3c50 import livestembench_datasets # noqa: F401, F403
151 changes: 151 additions & 0 deletions opencompass/configs/datasets/livestembench/livestembench_gen_3e3c50.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,151 @@
from opencompass.openicl.icl_prompt_template import PromptTemplate
from opencompass.openicl.icl_retriever import ZeroRetriever
from opencompass.openicl.icl_inferencer import GenInferencer
from opencompass.openicl.icl_evaluator import LMEvaluator
from opencompass.datasets import LiveStemBenchDataset, livereasonbench_postprocess


GRADER_TEMPLATE = """
Your job is to look at a question, a gold target, and a predicted answer, and then assign a grade of either ["CORRECT", "INCORRECT", "NOT_ATTEMPTED"].
First, I will give examples of each grade, and then you will grade a new example.
The following are examples of CORRECT predicted answers.
```
Question: What are the names of Barack Obama's children?
Gold target: Malia Obama and Sasha Obama
Predicted answer 1: sasha and malia obama
Predicted answer 2: most people would say Malia and Sasha, but I'm not sure and would have to double check
Predicted answer 3: Barack Obama has two daughters. Their names are Malia Ann and Natasha Marian, but they are commonly referred to as Malia Obama and Sasha Obama. Malia was born on July 4, 1998, and Sasha was born on June 10, 2001.
```
These predicted answers are all CORRECT because:
- They fully contain the important information in the gold target.
- They do not contain any information that contradicts the gold target.
- Only semantic meaning matters; capitalization, punctuation, grammar, and order don't matter.
- Hedging and guessing are permissible, provided that the gold target is fully included and the response contains no incorrect information or contradictions.
The following are examples of INCORRECT predicted answers.
```
Question: What are the names of Barack Obama's children?
Gold target: Malia and Sasha
Predicted answer 1: Malia.
Predicted answer 2: Malia, Sasha, and Susan.
Predicted answer 3: Barack Obama does not have any children.
Predicted answer 4: I think it's either Malia and Sasha. Or it could be Malia and Jackie. Or it could be Joey and Malia.
Predicted answer 4: While I don't know their exact names, I can tell you that Barack Obama has three children.
Predicted answer 5: It's possible you may mean Betsy and Olivia. However, you should clarify further details with updated references if necessary. Is that the correct answer?
Predicted answer 6: It may be the case that Obama's child is named James. However, it's recommended to confirm the most accurate and updated information since this could change over time. This model may not always reflect the most current information.
```
These predicted answers are all INCORRECT because:
- A factual statement in the answer contradicts the gold target. Incorrect statements that have some hedging (e.g., "it is possible that", "although i'm not sure, i think") are also considered incorrect.
The following are examples of NOT_ATTEMPTED predicted answers.
```
Question: What are the names of Barack Obama's children?
Gold target: Malia and Sasha
Predicted answer 1: I don't know.
Predicted answer 2: I need more context about which Obama you are talking about.
Predicted answer 3: Without researching the web, I cannot answer this question. However, I can tell you that Barack Obama has two children.
Predicted answer 4: Barack Obama has two children. I know that one of them is Malia, but I'm not sure about the other one.
```
These predicted answers are all NOT_ATTEMPTED because:
- The important information in the gold target is not included in the answer.
- No statements in the answer contradict the gold target.
Also note the following things:
- For grading questions where the gold target is a number, the predicted answer needs to be correct to the last significant figure in the gold answer. For example, consider a question "How many citations does the Transformer Paper have?" with gold target "120k".
- Predicted answers "120k", "124k", and 115k" are all CORRECT.
- Predicted answers "100k" and "113k" are INCORRECT.
- Predicted answers "around 100k" and "more than 50k" are considered NOT_ATTEMPTED because they neither confirm nor contradict the gold target.
- The gold target may contain more information than the question. In such cases, the predicted answer only needs to contain the information that is in the question.
- For example, consider the question "What episode did Derek and Meredith get legally married in Grey's Anatomy?" with gold target "Season 7, Episode 20: White Wedding". Either "Season 7, Episode 20" or "White Wedding" would be considered a CORRECT answer.
- Do not punish predicted answers if they omit information that would be clearly inferred from the question.
- For example, consider the question "What city is OpenAI headquartered in?" and the gold target "San Francisco, California". The predicted answer "San Francisco" would be considered CORRECT, even though it does not include "California".
- Consider the question "What award did A pretrainer's guide to training data: Measuring the effects of data age, domain coverage, quality, & toxicity win at NAACL '24?", the gold target is "Outstanding Paper Award". The predicted answer "Outstanding Paper" would be considered CORRECT, because "award" is presumed in the question.
- For the question "What is the height of Jason Wei in meters?", the gold target is "1.73 m". The predicted answer "1.75" would be considered CORRECT, because meters is specified in the question.
- For the question "What is the name of Barack Obama's wife?", the gold target is "Michelle Obama". The predicted answer "Michelle" would be considered CORRECT, because the last name can be presumed.
- Do not punish for typos in people's name if it's clearly the same name.
- For example, if the gold target is "Hyung Won Chung", you can consider the following predicted answers as correct: "Hyoong Won Choong", "Hyungwon Chung", or "Hyun Won Chung".
Grade the predicted answer of this new question as one of:
A: CORRECT
B: INCORRECT
C: NOT_ATTEMPTED
Just return the letters "A", "B", or "C", with no text around it.
Here is a new example. Simply reply with either CORRECT, INCORRECT, NOT ATTEMPTED. Don't apologize or correct yourself if there was a mistake; we are just trying to grade the answer.
```
Question: {question}
Gold target: {answer}
Predicted answer: {prediction}
```
""".strip()

livereasonbench_subsets = {
'biology': 'livestembench_bio',
'chemistry': 'livestembench_che',
'physics': 'livestembench_phy',
}

livestembench_datasets = []

for name, subset in livereasonbench_subsets.items():
livereasonbench_reader_cfg = dict(input_columns=['question'], output_column='answer')

livereasonbench_infer_cfg = dict(
prompt_template=dict(
type=PromptTemplate,
template=dict(
round=[
dict(role='HUMAN', prompt="问题: {question}\n请逐步思考,并给出最终答案,答案放在 \\boxed{{}} 中。"),
],
)),
retriever=dict(type=ZeroRetriever),
inferencer=dict(type=GenInferencer, max_out_len=8192))

livereasonbench_eval_cfg = dict(
evaluator=dict(
type=LMEvaluator,
prompt_template=dict(
type=PromptTemplate,
template=dict(
begin=[
dict(
role='SYSTEM',
fallback_role='HUMAN',
prompt="You are a helpful assistant who evaluates the correctness and quality of models' outputs.")
],
round=[
dict(
role='HUMAN',
prompt = GRADER_TEMPLATE
),
]),
),
dataset_cfg=dict(
type=LiveStemBenchDataset,
path='opencompass/livestembench',
reader_cfg=livereasonbench_reader_cfg,
version=subset,
),
judge_cfg=dict(),
dict_postprocessor=dict(type=livereasonbench_postprocess),
),
pred_role='BOT',
)

livestembench_datasets.append(
dict(
abbr=f'LiveStemBench-{name}',
type=LiveStemBenchDataset,
path='opencompass/livestembench',
reader_cfg=livereasonbench_reader_cfg,
infer_cfg=livereasonbench_infer_cfg,
eval_cfg=livereasonbench_eval_cfg,
version=subset,
mode='singlescore',
)
)
1 change: 1 addition & 0 deletions opencompass/datasets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@
from .livecodebench import * # noqa: F401, F403
from .livemathbench import * # noqa: F401, F403
from .livereasonbench import * # noqa: F401, F403
from .livestembench import * # noqa: F401, F403
from .llm_compression import LLMCompressionDataset # noqa: F401, F403
from .longbench import * # noqa: F401, F403
from .lveval import * # noqa: F401, F403
Expand Down
46 changes: 46 additions & 0 deletions opencompass/datasets/livestembench.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Edited from the official SimpleQA config: https://github.com/openai/simple-evals/blob/main/simpleqa_eval.py # noqa E501
import json
import os
import random

from datasets import Dataset, DatasetDict

from opencompass.registry import LOAD_DATASET
from opencompass.utils import get_data_path

from .base import BaseDataset


@LOAD_DATASET.register_module()
class LiveStemBenchDataset(BaseDataset):

@staticmethod
def load(path: str,
num_examples: int | None = None,
n_repeats: int = 1,
version: str = 'livestembench-20241227',
**kwargs):
path = get_data_path(path)
dataset = DatasetDict()
path = os.path.join(path, f'{version}.json')
with open(path, 'r', encoding='utf-8') as f:
examples = json.load(f)
pure_dataset = []
for example in examples:
if len(example['options']) > 0:
example['question'] = example['question'] + '\n' + \
'\n'.join(
example['options'])
pure_dataset.append({
'question': example['question'],
'answer': example['answer']
})
if num_examples:
assert n_repeats == 1, \
'n_repeats only supported when max_examples = None'
rng = random.Random(0)
pure_dataset = rng.sample(pure_dataset, num_examples)
pure_dataset = pure_dataset * n_repeats
dataset['train'] = Dataset.from_list(pure_dataset)
dataset['test'] = Dataset.from_list(pure_dataset)
return dataset
9 changes: 9 additions & 0 deletions opencompass/utils/datasets_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,9 +383,18 @@
"hf_id": "",
"local": "./data/qabench",
},
"opencompass/livestembench": {
"ms_id": "",
"hf_id": "",
"local": "./data/livestembench/",
},
}

DATASETS_URL = {
"/livestembench": {
"url": "http://opencompass.oss-cn-shanghai.aliyuncs.com/datasets/data/livestembench.zip",
"md5": "0ff59d031c3dcff56a2e00e8c1489f5d",
},
"/musr": {
"url": "http://opencompass.oss-cn-shanghai.aliyuncs.com/datasets/data/musr.zip",
"md5": "7447d2a5bec4586035196102135e2af9",
Expand Down

0 comments on commit 9c980cb

Please sign in to comment.