ShyFoo commited on
Commit
1019e12
·
verified ·
1 Parent(s): 108530b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +70 -20
README.md CHANGED
@@ -1,20 +1,70 @@
1
- ---
2
- license: mit
3
- configs:
4
- - config_name: default
5
- data_files:
6
- - split: train
7
- path: data/train-*
8
- dataset_info:
9
- features:
10
- - name: image
11
- dtype: image
12
- - name: mask
13
- dtype: image
14
- splits:
15
- - name: train
16
- num_bytes: 293005530.85
17
- num_examples: 5050
18
- download_size: 281248808
19
- dataset_size: 293005530.85
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
+ ```