mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00

* add TheoremQA with 5-shot * add huggingface_above_v4_33 classes * use num_worker partitioner in cli * update theoremqa * update TheoremQA * add TheoremQA * rename theoremqa -> TheoremQA * update TheoremQA output path * rewrite many model configs * update huggingface * further update * refine configs * update configs * update configs * add configs/eval_llama3_instruct.py * add summarizer multi faceted * update bbh datasets * update configs/models/hf_llama/lmdeploy_llama3_8b_instruct.py * rename class * update readme * update hf above v4.33
26 lines
760 B
Python
26 lines
760 B
Python
import copy
|
|
|
|
from mmengine.config import ConfigDict
|
|
|
|
from opencompass.registry import LOAD_DATASET, MODELS
|
|
|
|
|
|
def build_dataset_from_cfg(dataset_cfg: ConfigDict):
|
|
dataset_cfg = copy.deepcopy(dataset_cfg)
|
|
dataset_cfg.pop('infer_cfg', None)
|
|
dataset_cfg.pop('eval_cfg', None)
|
|
dataset_cfg.pop('abbr', None)
|
|
return LOAD_DATASET.build(dataset_cfg)
|
|
|
|
|
|
def build_model_from_cfg(model_cfg: ConfigDict):
|
|
model_cfg = copy.deepcopy(model_cfg)
|
|
model_cfg.pop('run_cfg', None)
|
|
model_cfg.pop('max_out_len', None)
|
|
model_cfg.pop('batch_size', None)
|
|
model_cfg.pop('abbr', None)
|
|
model_cfg.pop('summarizer_abbr', None)
|
|
model_cfg.pop('pred_postprocessor', None)
|
|
model_cfg.pop('min_out_len', None)
|
|
return MODELS.build(model_cfg)
|