Improve dataset card: Update task categories, add links and sample usage (#2)
Browse files- Improve dataset card: Update task categories, add links and sample usage (73e6f5e702e9afb2e42e3cd3265e06abd6815b4e)
Co-authored-by: Niels Rogge <nielsr@users.noreply.huggingface.co>
README.md
CHANGED
|
@@ -3,25 +3,22 @@ license: cc-by-nc-sa-4.0
|
|
| 3 |
size_categories:
|
| 4 |
- 1K<n<10K
|
| 5 |
task_categories:
|
| 6 |
-
-
|
| 7 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
configs:
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
---
|
| 14 |
|
| 15 |
-
|
| 16 |
-
<img alt="arXiv" src="https://upload.wikimedia.org/wikipedia/commons/b/bc/ArXiv_logo_2022.svg" height="20" />
|
| 17 |
-
</a>
|
| 18 |
-
<a href="https://seeingculture-benchmark.github.io/" target="_blank">
|
| 19 |
-
<img alt="Website" src="https://www.freepnglogos.com/uploads/logo-website-png/logo-website-world-wide-web-svg-png-icon-download-10.png" height="20" />
|
| 20 |
-
</a>
|
| 21 |
-
<a href="https://github.com/buraksatar/seeingculture-benchmark" style="display: inline-block; margin-right: 10px;">
|
| 22 |
-
<img alt="GitHub Code" src="https://images.seeklogo.com/logo-png/27/1/github-logo-png_seeklogo-273183.png" />
|
| 23 |
-
</a>
|
| 24 |
-
--->
|
| 25 |
|
| 26 |
# Seeing Culture Benchmark (SCB)
|
| 27 |
|
|
@@ -45,8 +42,29 @@ See the project website for more information. https://seeingculture-benchmark.gi
|
|
| 45 |
- image_data/Image_List.csv contains the dataset.
|
| 46 |
- mcq_data/MCQ_List_no_ans.csv contains the MCQ questions.
|
| 47 |
- mcq_data/MCQ_Avoid_List.csv contains the avoid list for MCQ generation.
|
| 48 |
-
See the [GitHub repository](https://github.com/buraksatar/
|
| 49 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 50 |
|
| 51 |
# Note:
|
| 52 |
|
|
@@ -65,7 +83,6 @@ All annotations are released under the CC BY-NC-SA 4.0 license.
|
|
| 65 |
|
| 66 |
If you are using this dataset, please cite our paper accepted by EMNLP 2025 Main Conference!
|
| 67 |
|
| 68 |
-
The citation information will be available soon.
|
| 69 |
```
|
| 70 |
@misc{satar2025seeingculturebenchmarkvisual,
|
| 71 |
title={Seeing Culture: A Benchmark for Visual Reasoning and Grounding},
|
|
|
|
| 3 |
size_categories:
|
| 4 |
- 1K<n<10K
|
| 5 |
task_categories:
|
| 6 |
+
- image-text-to-text
|
| 7 |
+
- image-segmentation
|
| 8 |
+
language:
|
| 9 |
+
- en
|
| 10 |
+
tags:
|
| 11 |
+
- vqa
|
| 12 |
+
- cultural-understanding
|
| 13 |
+
- cultural
|
| 14 |
configs:
|
| 15 |
+
- config_name: Image_List
|
| 16 |
+
data_files:
|
| 17 |
+
- split: test
|
| 18 |
+
path: image_data/Image_List.csv
|
| 19 |
---
|
| 20 |
|
| 21 |
+
[Paper](https://huggingface.co/papers/2509.16517) | [Project Page](https://seeingculture-benchmark.github.io/) | [Code](https://github.com/buraksatar/SeeingCulture)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
|
| 23 |
# Seeing Culture Benchmark (SCB)
|
| 24 |
|
|
|
|
| 42 |
- image_data/Image_List.csv contains the dataset.
|
| 43 |
- mcq_data/MCQ_List_no_ans.csv contains the MCQ questions.
|
| 44 |
- mcq_data/MCQ_Avoid_List.csv contains the avoid list for MCQ generation.
|
| 45 |
+
See the [GitHub repository](https://github.com/buraksatar/SeeingCulture) for more details about MCQ generation.
|
| 46 |
|
| 47 |
+
# Sample Usage
|
| 48 |
+
|
| 49 |
+
The GitHub repository provides an MCQ Generator. You can set it up and use it with the following commands:
|
| 50 |
+
|
| 51 |
+
### Multiple Choice Question Generator Setup
|
| 52 |
+
|
| 53 |
+
```bash
|
| 54 |
+
$ source setup.sh
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
### Usage
|
| 58 |
+
|
| 59 |
+
```bash
|
| 60 |
+
$ source generate.sh
|
| 61 |
+
```
|
| 62 |
+
|
| 63 |
+
#### Output
|
| 64 |
+
|
| 65 |
+
1. The output will be saved in the `./` directory in `questions_{timestamp}.jsonl` format.
|
| 66 |
+
2. Please download `data.zip` and unpack to the same directory as the `generate.sh` file.
|
| 67 |
+
3. You can visualize using the `visualizer.ipynb` file (please change the `JSON` file name accordingly).
|
| 68 |
|
| 69 |
# Note:
|
| 70 |
|
|
|
|
| 83 |
|
| 84 |
If you are using this dataset, please cite our paper accepted by EMNLP 2025 Main Conference!
|
| 85 |
|
|
|
|
| 86 |
```
|
| 87 |
@misc{satar2025seeingculturebenchmarkvisual,
|
| 88 |
title={Seeing Culture: A Benchmark for Visual Reasoning and Grounding},
|