forked from open-compass/opencompass
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
805 changed files
with
6,828 additions
and
8,006 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,4 +39,4 @@ | |
task=dict(type=OpenICLInferTask)), | ||
) | ||
|
||
work_dir = "outputs/api_erniebot/" | ||
work_dir = 'outputs/api_erniebot/' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,4 +34,4 @@ | |
task=dict(type=OpenICLInferTask)), | ||
) | ||
|
||
work_dir = "outputs/api_minimax/" | ||
work_dir = 'outputs/api_minimax/' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,4 +37,4 @@ | |
task=dict(type=OpenICLInferTask)), | ||
) | ||
|
||
work_dir = "outputs/api_moonshot/" | ||
work_dir = 'outputs/api_moonshot/' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,4 +37,4 @@ | |
task=dict(type=OpenICLInferTask)), | ||
) | ||
|
||
work_dir = "outputs/api_qwen/" | ||
work_dir = 'outputs/api_qwen/' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,4 +64,4 @@ | |
task=dict(type=OpenICLInferTask)), | ||
) | ||
|
||
work_dir = "outputs/api_zhipu_v2/" | ||
work_dir = 'outputs/api_zhipu_v2/' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
from mmengine.config import read_base | ||
|
||
with read_base(): | ||
from ..datasets.mmlu.mmlu_gen_4d595a import mmlu_datasets | ||
from ..datasets.cmmlu.cmmlu_gen_c13365 import cmmlu_datasets | ||
from ..datasets.ceval.ceval_gen_5f30c7 import ceval_datasets | ||
from ..datasets.GaokaoBench.GaokaoBench_no_subjective_gen_4c31db import GaokaoBench_datasets | ||
from ..datasets.triviaqa.triviaqa_wiki_1shot_gen_eaf81e import triviaqa_datasets | ||
from ..datasets.nq.nq_open_1shot_gen_01cf41 import nq_datasets | ||
from ..datasets.race.race_gen_69ee4f import race_datasets | ||
from ..datasets.winogrande.winogrande_5shot_gen_b36770 import winogrande_datasets | ||
from ..datasets.hellaswag.hellaswag_10shot_gen_e42710 import hellaswag_datasets | ||
from ..datasets.bbh.bbh_gen_2879b0 import bbh_datasets | ||
from ..datasets.gsm8k.gsm8k_gen_1d7fe4 import gsm8k_datasets | ||
from ..datasets.math.math_0shot_gen_393424 import math_datasets | ||
from ..datasets.TheoremQA.TheoremQA_5shot_gen_6f0af8 import TheoremQA_datasets | ||
from ..datasets.humaneval.humaneval_gen_8e312c import humaneval_datasets | ||
from ..datasets.mbpp.sanitized_mbpp_gen_830460 import sanitized_mbpp_datasets | ||
from ..datasets.gpqa.gpqa_gen_4baadb import gpqa_datasets | ||
from ..datasets.IFEval.IFEval_gen_3321a3 import ifeval_datasets | ||
|
||
datasets = sum((v for k, v in locals().items() if k.endswith('_datasets')), []) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.