Datasets:
Update README.md
Browse files
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
|
| 29 |
```
|
| 30 |
|
| 31 |
The official evaluation scripts expect the dataset to be available under `./data` in the project root.
|
| 32 |
|
| 33 |
-
|
|
|
|
|
|
|
| 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 |
-
|
|
|
|
|
|
|
| 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 |
-
|
|
|
|
|
|
|
| 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
|
| 78 |
| `question` | Natural-language question. |
|
| 79 |
-
| `answer` | Ground-truth answer
|
| 80 |
-
| `images` | Image paths associated with the
|
| 81 |
-
| `datajson` | Source
|
| 82 |
-
| `Height` | Image
|
| 83 |
-
| `
|
| 84 |
-
| `url` | Original source URL when available. |
|
| 85 |
|
| 86 |
-
Question
|
| 87 |
|
| 88 |
-
| Type |
|
| 89 |
| --- | --- |
|
| 90 |
-
| `1` | Multiple-choice
|
| 91 |
-
| `2` | Short-answer
|
| 92 |
-
| `3` | Open-ended
|
| 93 |
-
| `4` | Bounding-box localization
|
|
|
|
|
|
|
| 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 |
-
##
|
|
|
|
|
|
|
|
|
|
| 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 |
|