zli
commited on
Commit
·
d63dd13
1
Parent(s):
61dbfdc
COCO_GridQA added
Browse files- .gitattributes +1 -0
- .gitignore +1 -0
- COCO_GridQA.tsv +3 -0
- README.md +36 -0
.gitattributes
CHANGED
@@ -57,3 +57,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
57 |
# Video files - compressed
|
58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
57 |
# Video files - compressed
|
58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
60 |
+
*.tsv filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
images/
|
COCO_GridQA.tsv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8c5decd416b53940d84cfdf0724eed84f962f2da9f61bc8530477762fedf7e32
|
3 |
+
size 14289908
|
README.md
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
task_categories:
|
3 |
+
- question-answering
|
4 |
+
---
|
5 |
+
# COCO-GridQA Dataset
|
6 |
+
|
7 |
+
## Overview
|
8 |
+
|
9 |
+
The **COCO-GridQA** dataset is a derived dataset created from the [COCO (Common Objects in Context)](https://cocodataset.org/) validation set. It focuses on spatial reasoning tasks by arranging object crops from COCO images into a 2x2 grid and providing question-answer pairs about the positions of objects within the grid.
|
10 |
+
|
11 |
+
This dataset is designed for tasks such as spatial reasoning, visual question answering (VQA), and object localization. Each sample consists of:
|
12 |
+
- A composite image containing four object crops arranged in a 2x2 grid.
|
13 |
+
- Annotations that include questions like "Where is the tennis racket in the image?" and options like "Bottom-left", "Top-left", "Bottom-right" and "Top-right".
|
14 |
+
|
15 |
+
## File Format
|
16 |
+
|
17 |
+
This dataset is provided in a **TSV (Tab-Separated Values)** format.
|
18 |
+
|
19 |
+
| Column | Description |
|
20 |
+
|-----------|------------------------------------------------------------------|
|
21 |
+
| `index` | A unique identifier for each data sample |
|
22 |
+
| `question`| A textual question related to the content of the image |
|
23 |
+
| `A` | The first option in the multiple-choice answers |
|
24 |
+
| `B` | The second option in the multiple-choice answers |
|
25 |
+
| `C` | The third option in the multiple-choice answers |
|
26 |
+
| `D` | The fourth option in the multiple-choice answers |
|
27 |
+
| `answer` | The correct answer, represented by A, B, C, or D |
|
28 |
+
| `image` | A base64-encoded string representing the image |
|
29 |
+
---
|
30 |
+
|
31 |
+
## License
|
32 |
+
|
33 |
+
The **COCO-GridQA** dataset is derived from the [COCO dataset](https://cocodataset.org/), which is made available under the [Creative Commons Attribution 4.0 International License (CC BY 4.0)](https://creativecommons.org/licenses/by/4.0/).
|
34 |
+
|
35 |
+
### Key Points of the License:
|
36 |
+
- **Attribution**: You must give appropriate credit to the original COCO dataset creators whenever you use this dataset or any derivative works. Please cite the original COCO paper if you use this dataset in your research:
|