MM-MVR commited on
Commit
f44cfe5
·
verified ·
1 Parent(s): 7574846

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +56 -4
README.md CHANGED
@@ -22,13 +22,47 @@ task_categories:
22
  tags:
23
  - counting
24
  - object-counting
 
 
25
  ---
26
 
27
- # HoloCount
28
 
29
- A counting QA benchmark dataset with 2480 samples across 20 fine-grained counting capabilities.
 
 
 
 
 
 
 
 
 
 
 
 
 
30
 
31
- ## Split Distribution
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
 
33
  | Split | Count |
34
  |-------|-------|
@@ -58,7 +92,7 @@ A counting QA benchmark dataset with 2480 samples across 20 fine-grained countin
58
  ```python
59
  from datasets import load_dataset
60
 
61
- ds = load_dataset("imagefolder", data_dir="data")
62
  ```
63
 
64
  ## Fields
@@ -70,3 +104,21 @@ ds = load_dataset("imagefolder", data_dir="data")
70
  - `sample_id`: unique identifier
71
  - `image_height`: original image height in pixels
72
  - `image_width`: original image width in pixels
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  tags:
23
  - counting
24
  - object-counting
25
+ - benchmark
26
+ - multimodal
27
  ---
28
 
29
+ # HoloCount: A Holistic Visual Counting Benchmark for MLLMs
30
 
31
+ <p align="center">
32
+ <a href="TODO_ARXIV_LINK">
33
+ <img src="https://img.shields.io/badge/arXiv-Paper-red" alt="arXiv">
34
+ </a>
35
+ <a href="https://huggingface.co/datasets/MM-MVR/HoloCount">
36
+ <img src="https://img.shields.io/badge/%F0%9F%A4%97%20HuggingFace-Dataset-yellow" alt="HuggingFace">
37
+ </a>
38
+ <a href="https://kinredon.github.io/HoloCount/">
39
+ <img src="https://img.shields.io/badge/Project-Page-blue" alt="Project Page">
40
+ </a>
41
+ <a href="https://github.com/kinredon/HoloCount">
42
+ <img src="https://img.shields.io/badge/GitHub-Code-black" alt="GitHub">
43
+ </a>
44
+ </p>
45
 
46
+ ## Abstract
47
+
48
+ Visual counting is a fundamental pillar of multimodal intelligence, requiring a seamless integration of fine-grained grounding and spatial reasoning. While Multimodal Large Language Models (MLLMs) have achieved remarkable success in qualitative scene understanding, their quantitative precision remains a significant bottleneck, often characterized by persistent numerical hallucinations. Existing counting benchmarks primarily focus on basic perception in simplified contexts, failing to capture the complex failure modes that emerge under logical constraints or adversarial conditions. To address these limitations, we introduce HoloCount, a holistic and diagnostically rich benchmark structured around a three-level hierarchical taxonomy. HoloCount evaluates MLLMs across: (1) Semantic Counting, focusing on atomic and property-based enumeration; (2) Analytical Counting, assessing logical composition through spatial and set-based reasoning; and (3) Robustness Testing, probing model integrity against adverse scenarios and grounded counter-priors, such as high-density scenes and linguistic biases. Through an exhaustive evaluation of over 20 state-of-the-art MLLMs, we reveal a critical performance gap: even top-tier models degrade significantly as tasks transition from perception to complex analytical reasoning and adverse scenarios. Our findings provide a systematic landscape of current MLLM counting capabilities and offer a roadmap for developing more grounded and reliable multimodal systems.
49
+
50
+ ## Overview
51
+
52
+ - **2,480** QA pairs
53
+ - **20** fine-grained subsets
54
+ - **1,481** visual concepts
55
+ - **30+** evaluated MLLMs
56
+
57
+ ## Taxonomy
58
+
59
+ The benchmark features a three-level hierarchical taxonomy:
60
+
61
+ - **Semantic Counting** — Atomic and property-based enumeration (6 subsets)
62
+ - **Analytical Counting** — Logical composition through spatial and set-based reasoning (7 subsets)
63
+ - **Robustness Testing** — Model integrity against adverse scenarios (7 subsets)
64
+
65
+ ## Dataset Composition
66
 
67
  | Split | Count |
68
  |-------|-------|
 
92
  ```python
93
  from datasets import load_dataset
94
 
95
+ dataset = load_dataset("MM-MVR/HoloCount")
96
  ```
97
 
98
  ## Fields
 
104
  - `sample_id`: unique identifier
105
  - `image_height`: original image height in pixels
106
  - `image_width`: original image width in pixels
107
+
108
+ ## Citation
109
+
110
+ ```bibtex
111
+ @article{deng2026holocount,
112
+ title={HoloCount: A Holistic Visual Counting Benchmark for MLLMs},
113
+ author={Deng, Jinhong and Qiao, Limeng and Wan, Guanglu},
114
+ year={2026}
115
+ }
116
+ ```
117
+
118
+ ## License
119
+
120
+ This dataset is released under the [CC BY 4.0 License](https://creativecommons.org/licenses/by/4.0/).
121
+
122
+ ## Contact
123
+
124
+ - Jinhong Deng (dengjinhong@meituan.com)