Volavion commited on
Commit
b9683c7
·
verified ·
1 Parent(s): 3401cda

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +80 -28
README.md CHANGED
@@ -1,34 +1,86 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: image
5
- dtype: image
6
- - name: image_id
7
- dtype: string
8
- - name: task_type
9
- dtype: string
10
- - name: question
11
- dtype: string
12
- - name: answer
13
- dtype: string
14
- - name: difficulty
15
- dtype: string
16
- - name: metadata
17
- dtype: string
18
- splits:
19
  - name: perception
20
- num_bytes: 7881595
21
  num_examples: 3500
22
  - name: reasoning
23
- num_bytes: 10605766
24
  num_examples: 2520
25
- download_size: 55425872
26
- dataset_size: 18487361
27
- configs:
28
- - config_name: default
29
- data_files:
30
- - split: perception
31
- path: data/perception-*
32
- - split: reasoning
33
- path: data/reasoning-*
34
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+ license: apache-2.0
5
+ task_categories:
6
+ - visual-question-answering
7
+ - image-classification
8
+ pretty_name: FineSightBench
9
+ size_categories:
10
+ - 1K<n<10K
11
+ tags:
12
+ - VLM-evaluation
13
+ - fine-grained-visual-perception
14
+ - fine-grained-visual-reasoning
15
+ splits:
 
 
 
16
  - name: perception
 
17
  num_examples: 3500
18
  - name: reasoning
 
19
  num_examples: 2520
 
 
 
 
 
 
 
 
 
20
  ---
21
+
22
+ # FineSightBench
23
+
24
+ FineSightBench is a fine-grained visual benchmark for evaluating Vision Language Models (VLMs) on pixel-level perception and reasoning tasks.
25
+
26
+ ## Dataset Structure
27
+
28
+ The dataset consists of two splits:
29
+
30
+ ### `perception` (3 500 images)
31
+
32
+ Fine-grained single-target identification tasks at 8 pixel-size difficulty levels.
33
+
34
+ | Task | Description |
35
+ |------|-------------|
36
+ | Color Identification | Identify the color of a target object |
37
+ | Letter Recognition | Identify a rendered letter |
38
+ | Animal Recognition | Identify an animal silhouette |
39
+ | Shape Recognition | Identify a geometric shape |
40
+ | Dot Color Recognition | Identify the color of a tiny dot |
41
+
42
+ ### `reasoning` (2 520 images)
43
+
44
+ Chain-reasoning tasks requiring counting, ordering, and spatial reasoning.
45
+
46
+ | Task | Description |
47
+ |------|-------------|
48
+ | `spatial_chain` | List objects left→right or top→bottom |
49
+ | `comparison_chain` | List objects smallest→largest by size |
50
+ | `counting_chain` | Count objects per type + total |
51
+ | `blur_chain` | Count objects on blurred background |
52
+
53
+ ## Fields
54
+
55
+ | Field | Type | Description |
56
+ |-------|------|-------------|
57
+ | `image` | Image | 448×448 PNG canvas |
58
+ | `image_id` | string | Unique identifier |
59
+ | `task_type` | string | Task category |
60
+ | `question` | string | Prompt for the VLM |
61
+ | `answer` | string | Ground-truth answer (JSON string for reasoning) |
62
+ | `difficulty` | string | `easy` / `medium` / `hard` / `extreme` |
63
+ | `metadata` | string | JSON with canvas_size, pixel_size, targets list |
64
+
65
+ ## Usage
66
+
67
+ ```python
68
+ from datasets import load_dataset
69
+
70
+ ds = load_dataset("Volavion/FineSightBench")
71
+ print(ds)
72
+ # DatasetDict({
73
+ # perception: Dataset({features: [...], num_rows: 3500}),
74
+ # reasoning: Dataset({features: [...], num_rows: 2520})
75
+ # })
76
+
77
+ sample = ds["perception"][0]
78
+ sample["image"].show()
79
+ print(sample["question"])
80
+ print(sample["answer"])
81
+ ```
82
+
83
+ ## Canvas Design
84
+
85
+ All images are 448×448 pixels on a white background.
86
+ Object pixel sizes range from **3 px** (extreme) to **48 px** (easy), controlling task difficulty.