nielsr HF Staff commited on
Commit
73e6f5e
·
verified ·
1 Parent(s): 7812066

Improve dataset card: Update task categories, add links and sample usage

Browse files

This PR enhances the dataset card for the Seeing Culture Benchmark (SCB) by:

- **Updating Metadata**:
- Changing `task_categories` from `visual-question-answering` and `object-detection` to `image-text-to-text` and `image-segmentation` to more accurately reflect the dataset's focus on VQA and cultural artifact segmentation.
- Adding `language: en` and descriptive `tags` (`vqa`, `cultural-understanding`, `cultural`) for improved discoverability.
- **Adding Top-level Links**:
- Inserting Markdown links to the paper ([https://huggingface.co/papers/2509.16517](https://huggingface.co/papers/2509.16517)), project page ([https://seeingculture-benchmark.github.io/](https://seeingculture-benchmark.github.io/)), and GitHub repository ([https://github.com/buraksatar/SeeingCulture](https://github.com/buraksatar/SeeingCulture)) at the top of the README for quick access.
- Removing the outdated and commented-out HTML badge block.
- **Adding Sample Usage**:
- Including a "Sample Usage" section with code snippets from the GitHub README to guide users on how to set up and use the MCQ Generator.
- **Ensuring Link Consistency**:
- Correcting the GitHub link in the "Loading the dataset" section to `https://github.com/buraksatar/SeeingCulture`.
- **Updating Citation Information**:
- Modifying the introductory text for the citation to reflect that the BibTeX information is already available below. The arXiv URL in the BibTeX itself remains unchanged as per guidelines.

These changes significantly improve the clarity, navigability, and completeness of the dataset card.

Files changed (1) hide show
  1. README.md +35 -18
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
- - visual-question-answering
7
- - object-detection
 
 
 
 
 
 
8
  configs:
9
- - config_name: Image_List
10
- data_files:
11
- - split: test
12
- path: image_data/Image_List.csv
13
  ---
14
 
15
- <!--- <a href="" target="_blank">
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/seeingculture) for more details about MCQ generation.
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},