Lingfengtingyumian commited on
Commit
4d89588
Β·
verified Β·
1 Parent(s): facceb8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -24
README.md CHANGED
@@ -1,4 +1,4 @@
1
- ---
2
  pretty_name: VisReason
3
  language:
4
  - en
@@ -12,7 +12,7 @@ tags:
12
  - benchmark
13
  size_categories:
14
  - 1K<n<10K
15
- ---
16
 
17
  # VisReason
18
 
@@ -20,17 +20,19 @@ VisReason is a benchmark for evaluating vision-centric reasoning in everyday sce
20
 
21
  The dataset contains **1,505** carefully curated questions across **10 reasoning categories**, covering perceptual, structural, and conceptual reasoning tasks.
22
 
23
- ## Download
24
 
25
  You can download the dataset with the Hugging Face CLI:
26
 
27
  ```bash
28
- hf download <repo_id> --repo-type dataset --local-dir ./data
29
  ```
30
 
31
  The official evaluation scripts expect the dataset to be available under `./data` in the project root.
32
 
33
- ## Dataset Structure
 
 
34
 
35
  ```text
36
  data/
@@ -51,7 +53,9 @@ Images are stored under the corresponding `img_<class_number>` folders. Each ima
51
  datajson_label.<ext>
52
  ```
53
 
54
- ## Data Files
 
 
55
 
56
  | Class | Data file | Samples | Image folder |
57
  | --- | --- | ---: | --- |
@@ -66,33 +70,38 @@ datajson_label.<ext>
66
  | `class_9` | `class_9.jsonl` | 275 | `img_9/` |
67
  | `class_10` | `class_10.jsonl` | 268 | `img_10/` |
68
 
69
- ## Data Format
 
 
70
 
71
  Each `class_*.jsonl` file contains one JSON object per line. A sample has the following fields:
72
 
 
 
73
  | Field | Description |
74
  | --- | --- |
75
  | `class` | Class identifier. |
76
  | `label` | Sample identifier within the source data. |
77
- | `question type` | Question format used by the prompt and evaluator. |
78
  | `question` | Natural-language question. |
79
- | `answer` | Ground-truth answer. For localization tasks, this contains bounding boxes. |
80
- | `images` | Image paths associated with the question. |
81
- | `datajson` | Source dataset or source group key. |
82
- | `Height` | Image height when available. |
83
- | `Weight` | Image width field used by the released files. |
84
- | `url` | Original source URL when available. |
85
 
86
- Question types:
87
 
88
- | Type | Task |
89
  | --- | --- |
90
- | `1` | Multiple-choice question. |
91
- | `2` | Short-answer question. |
92
- | `3` | Open-ended question. |
93
- | `4` | Bounding-box localization question. |
 
 
94
 
95
- ## Evaluation
96
 
97
  The evaluation code is available in the GitHub repository:
98
 
@@ -116,16 +125,18 @@ results/<model>/summary.json
116
 
117
  For `class_1` and `class_2`, bounding-box predictions are evaluated with IoU at threshold 0.5. Other classes are evaluated by an LLM-based judge. The final score is the unweighted mean over all class accuracies.
118
 
119
- ## License
120
 
121
 
122
- ## Citation
 
 
 
123
 
124
  ```bibtex
125
 
126
  ```
127
 
128
- ## Contact
129
 
130
  If you have any questions, please reach out to:
131
 
 
1
+ <!-- ---
2
  pretty_name: VisReason
3
  language:
4
  - en
 
12
  - benchmark
13
  size_categories:
14
  - 1K<n<10K
15
+ --- -->
16
 
17
  # VisReason
18
 
 
20
 
21
  The dataset contains **1,505** carefully curated questions across **10 reasoning categories**, covering perceptual, structural, and conceptual reasoning tasks.
22
 
23
+ ## πŸ“₯ Download
24
 
25
  You can download the dataset with the Hugging Face CLI:
26
 
27
  ```bash
28
+ hf download Lingfengtingyumian/VisReason --repo-type dataset --local-dir ./data
29
  ```
30
 
31
  The official evaluation scripts expect the dataset to be available under `./data` in the project root.
32
 
33
+
34
+
35
+ ## πŸ—‚οΈ Dataset Structure
36
 
37
  ```text
38
  data/
 
53
  datajson_label.<ext>
54
  ```
55
 
56
+
57
+
58
+ ## πŸ“Š Data Files
59
 
60
  | Class | Data file | Samples | Image folder |
61
  | --- | --- | ---: | --- |
 
70
  | `class_9` | `class_9.jsonl` | 275 | `img_9/` |
71
  | `class_10` | `class_10.jsonl` | 268 | `img_10/` |
72
 
73
+
74
+
75
+ ## 🧾 Data Format
76
 
77
  Each `class_*.jsonl` file contains one JSON object per line. A sample has the following fields:
78
 
79
+ ### β—† Sample Fields
80
+
81
  | Field | Description |
82
  | --- | --- |
83
  | `class` | Class identifier. |
84
  | `label` | Sample identifier within the source data. |
85
+ | `question type` | Question format used for prompting and evaluation. |
86
  | `question` | Natural-language question. |
87
+ | `answer` | Ground-truth answer, including boxes for localization tasks. |
88
+ | `images` | Image paths associated with the sample. |
89
+ | `datajson` | Source split. |
90
+ | `Height` / `Weight` | Image size fields used by the released files. |
91
+ | `url` | Original source URL, when available. |
 
92
 
93
+ ### β—† Question Type
94
 
95
+ | Type | Format |
96
  | --- | --- |
97
+ | `1` | Multiple-choice |
98
+ | `2` | Short-answer |
99
+ | `3` | Open-ended |
100
+ | `4` | Bounding-box localization |
101
+
102
+
103
 
104
+ ## πŸ§ͺ Evaluation
105
 
106
  The evaluation code is available in the GitHub repository:
107
 
 
125
 
126
  For `class_1` and `class_2`, bounding-box predictions are evaluated with IoU at threshold 0.5. Other classes are evaluated by an LLM-based judge. The final score is the unweighted mean over all class accuracies.
127
 
 
128
 
129
 
130
+ ## πŸ“„ License
131
+
132
+
133
+ ## πŸ“ Citation
134
 
135
  ```bibtex
136
 
137
  ```
138
 
139
+ ## πŸ“¬ Contact
140
 
141
  If you have any questions, please reach out to:
142