Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion vlmeval/dataset/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
from .omtgbench import OMTGBench
from .ost_bench import OSTDataset
from .plotqa import PlotQA
from .pixmocount import PixmoCountDataset
from .qbench_video import QBench_Video, QBench_Video_MCQ, QBench_Video_VQA
from .reasonmap_plus import ReasonMap_Plus
from .refcoco import RefCOCODataset
Expand Down Expand Up @@ -280,7 +281,7 @@ def evaluate(self, eval_file, **judge_kwargs):
LEGO, MMSci_Captioning, Physics_yale, ScreenSpot_Pro, ScreenSpot, VenusBench_GD,
ScreenSpotV2, OSWorld_G, VBGD, MMIFEval, Spatial457, VisuLogic, CVBench, PathVQA_VAL,
PathVQA_TEST, TDBench, TDBenchGrounding, MicroBench, CharXiv, OmniMedVQA,
WildDocBenchmark, MSEarthMCQ, OCR_Reasoning, PhyX, VLMBlind, CountBenchQA,
WildDocBenchmark, MSEarthMCQ, OCR_Reasoning, PhyX, VLMBlind, CountBenchQA, PixmoCountDataset,
ZEROBench, SCAM, Omni3DBench, TallyQA, _3DSRBench, BMMR, AffordanceDataset,
MMEReasoning, GOBenchDataset, SFE, ChartMimic, MMVMBench, XLRSBench,
OmniEarthMCQBench, VisFactor, OSTDataset, OCRBench_v2, TreeBench, CVQA, M4Bench,
Expand Down
13 changes: 13 additions & 0 deletions vlmeval/dataset/pixmocount.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from .image_vqa import CountBenchQA


class PixmoCountDataset(CountBenchQA):
TYPE = 'VQA'
DATASET_URL = {
'PixmoCount': ''
}
DATASET_MD5 = {}

@classmethod
def supported_datasets(cls):
return ['PixmoCount']