Skip to content

Commit

Permalink
feat
Browse files Browse the repository at this point in the history
  • Loading branch information
Myhs-phz committed Dec 13, 2024
1 parent eed58f3 commit 63fc492
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
4 changes: 3 additions & 1 deletion vlmeval/dataset/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
from .mmgenbench import MMGenBench

from .miabench import MIABench
from .cmmmu import CMMMU
from .wildvision import WildVision
from .mmmath import MMMath
from .dynamath import Dynamath
Expand Down Expand Up @@ -128,7 +129,8 @@ def evaluate(self, eval_file, **judge_kwargs):
MMMUDataset, OCRBench, MathVista, LLaVABench, MMVet, MTVQADataset, TableVQABench,
MMLongBench, VCRDataset, MMDUDataset, DUDE, SlideVQA, MUIRDataset,
GMAIMMBenchDataset, MMERealWorld, HRBenchDataset, CRPE, MathVerse, NaturalBenchDataset,
MIABench, OlympiadBench, WildVision, MMMath, QSpatial, Dynamath, MMGenBench, VizWiz, MMNIAH
MIABench, OlympiadBench, WildVision, MMMath, QSpatial, Dynamath, MMGenBench, VizWiz, MMNIAH,
CMMMU
]

VIDEO_DATASET = [
Expand Down
21 changes: 21 additions & 0 deletions vlmeval/dataset/cmmmu.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
from .image_base import ImageBaseDataset


class CMMMU(ImageBaseDataset):

DATASET_URL = {
'CMMMU_TEST': 'https://opencompass.openxlab.space/utils/VLMEval/CMMMU_TEST.tsv',
}

DATASET_MD5 = {
'CMMMU_TEST': '521afc0f3bf341e6654327792781644d',
}

@staticmethod
def evaluate(self, eval_file, **judge_kwargs):

pass

def build_prompt(self, line):

pass

0 comments on commit 63fc492

Please sign in to comment.