Update README.md
Browse files
README.md
CHANGED
|
@@ -1,20 +1,70 @@
|
|
| 1 |
-
---
|
| 2 |
-
license:
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
-
|
| 11 |
-
|
| 12 |
-
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
pretty_name: CountHalluSet — RealHand
|
| 4 |
+
task_categories:
|
| 5 |
+
- unconditional-image-generation
|
| 6 |
+
- image-segmentation
|
| 7 |
+
size_categories:
|
| 8 |
+
- 1K<n<10K
|
| 9 |
+
tags:
|
| 10 |
+
- diffusion
|
| 11 |
+
- counting
|
| 12 |
+
- hallucination
|
| 13 |
+
- hands
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
# CountHalluSet — RealHand
|
| 17 |
+
|
| 18 |
+
Real-image dataset from **[Counting Hallucinations in Diffusion Models](https://arxiv.org/abs/2510.13080)**
|
| 19 |
+
(arXiv:2510.13080). Part of **CountHalluSet**, a suite with well-defined counting
|
| 20 |
+
criteria used to measure *counting hallucination*. Here the counting object is the
|
| 21 |
+
**five fingers of a human hand** — a hand with the wrong number of fingers is a
|
| 22 |
+
hallucination.
|
| 23 |
+
|
| 24 |
+
## What's inside
|
| 25 |
+
|
| 26 |
+
Photos of **single human hands**, each paired with a segmentation **mask** sharing
|
| 27 |
+
the same file stem. The image + mask pairing enables joint image+mask diffusion
|
| 28 |
+
(JDM). Images are used at 256×256 during training.
|
| 29 |
+
|
| 30 |
+
```
|
| 31 |
+
RealHand/
|
| 32 |
+
├── images/ # hand photos
|
| 33 |
+
└── masks/ # matching segmentation masks (same stem as the image)
|
| 34 |
+
```
|
| 35 |
+
|
| 36 |
+
There is no `labels.csv`: finger counts are not stored, they are measured at
|
| 37 |
+
evaluation time by the RealHand counter
|
| 38 |
+
([`CountHallu-counting_model-RealHand`](https://huggingface.co/ShyFoo/CountHallu-counting_model-RealHand)),
|
| 39 |
+
gated by the quality classifier
|
| 40 |
+
([`CountHallu-quality_cls_model-RealHand`](https://huggingface.co/ShyFoo/CountHallu-quality_cls_model-RealHand)).
|
| 41 |
+
|
| 42 |
+
## Source & license
|
| 43 |
+
|
| 44 |
+
<!-- TODO (required): state where the hand photos come from and under what terms
|
| 45 |
+
they may be redistributed. Set the `license:` field above accordingly and
|
| 46 |
+
replace `other`. If the images derive from an existing dataset, attribute it
|
| 47 |
+
and confirm the license permits re-hosting. Confirm no identifiable faces /
|
| 48 |
+
PII are present. -->
|
| 49 |
+
|
| 50 |
+
## Usage
|
| 51 |
+
|
| 52 |
+
```bash
|
| 53 |
+
huggingface-cli download ShyFoo/CountHallu-dataset-RealHand \
|
| 54 |
+
--repo-type dataset --local-dir $DATASET_ROOT/RealHand
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
Load with the reference code (`counthallu.datasets.RealHand`). See the
|
| 58 |
+
[CountHallu repository](<GITHUB_URL>) for the two-stage SD-1.5 JDM recipe and the
|
| 59 |
+
full evaluation protocol.
|
| 60 |
+
|
| 61 |
+
## Citation
|
| 62 |
+
|
| 63 |
+
```bibtex
|
| 64 |
+
@article{fu2025counting,
|
| 65 |
+
title={Counting Hallucinations in Diffusion Models},
|
| 66 |
+
author={Fu, Shuai and Zhou, Jian and Chen, Qi and Jing, Huang and Nguyen, Huy Anh and Liu, Xiaohan and Zeng, Zhixiong and Ma, Lin and Zhang, Quanshi and Wu, Qi},
|
| 67 |
+
journal={arXiv preprint arXiv:2510.13080},
|
| 68 |
+
year={2025}
|
| 69 |
+
}
|
| 70 |
+
```
|