File size: 4,064 Bytes
ce06528 542f689 ce06528 542f689 ce06528 b238833 89d870a b238833 ce06528 37441a3 5513047 7598c5b 1167db3 7598c5b 865eeee 7598c5b 9961831 5513047 e5a1faa 8d6845f 37441a3 5513047 1167db3 5513047 37441a3 93e5b33 9e3bd35 93e5b33 9e3bd35 93e5b33 37441a3 065a7fd 37441a3 b99a028 93e5b33 a9cd2a7 93e5b33 3b2c622 9e3bd35 3b2c622 93e5b33 9e3bd35 93e5b33 9e3bd35 93e5b33 5513047 93e5b33 d7ed632 5cca70e d7ed632 865eeee | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | ---
dataset_info:
features:
- name: class
dtype: string
- name: url
dtype: string
- name: category
dtype: string
splits:
- name: train
num_bytes: 218995
num_examples: 1870
download_size: 177502
dataset_size: 218995
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
---
# WAON-Bench: Japanese Cultural Image Classification Dataset
<div align="center" style="line-height: 1;">
|
<a href="https://huggingface.co/collections/llm-jp/waon" target="_blank">🤗 HuggingFace</a>
|
<a href="https://arxiv.org/abs/2510.22276" target="_blank">📄 Paper</a>
|
<a href="https://github.com/llm-jp/WAON" target="_blank">🧑💻 Code</a>
|
<br/>
</div>
<img src="WAON-Bench.jpg" alt="Overview of WAON-Bench" width="100%"/>
WAON-Bench is a manually curated image classification dataset designed to benchmark Vision-Language models on Japanese culture.
The dataset contains 374 classes across 8 categories (animals, buildings, events, everyday life, food, nature, scenery, and traditions), with 5 images per class, totaling 1,870 examples.
## How to Use
```python
from datasets import load_dataset
ds = load_dataset("llm-jp/WAON-Bench")
```
## Data Collection Pipeline
We followed the pipeline below to construct the dataset:
1. **Class Definition**: A total of 374 class names were manually defined and grouped into eight top-level categories:
animal, building, event, everyday, food, nature, scenery, and tradition.
2. **Image Selection**: For each class, 5 images were manually retrieved using Google Image Search. \
Images were selected based on the following criteria:
- The image should clearly represent the intended class.
- It should not contain elements that could be easily confused with other classes.
## Dataset Format
Each sample includes:
- `class`: Class name
- `url`: Image URL
- `category`: Class category
Example:
```
{'class': '柴犬', 'url': 'https://img.wanqol.com/2020/11/6e489894-main.jpg?auto=format', 'category': 'animal'}
```
## Dataset Statistics
- **Total classes**: 374
- **Total images**: 1,870
- **Class num per category**
| **class** | animal | building | event | everyday | food | nature | scenery | tradition | total |
|----------:|-------:|---------:|------:|---------:|-----:|-------:|--------:|----------:|------:|
| **count** | 41 | 40 | 29 | 45 | 55 | 27 | 75 | 62 | 374 |
- **Example Class Names per Category**
|category | class names|
|:-----------|--------:|
| animal | '柴犬', 'エゾシカ', 'ニホンカモシカ', 'イノシシ', ...|
| building | '鳥居', '茶室', '合掌造り', '町家', '縁側', ...|
| event | '花見', '花火大会', '盆踊り', '運動会', '卒業式', '成人式', ...|
| everyday | 'カラオケ', '温泉', '屋台', '洗濯物', '敷布団', ...|
| food | '茄子', 'しらす', 'ラーメン', '焼き鳥', '焼肉', ...|
| nature | '桜', '梅', '藤', '松, '噴火', ...|
| scenery | '茶畑', '雪国の街並み', '漁港', '砂防ダム', '石垣', ...|
| tradition| '華道', 剣道', '柔道', '弓道', ...|
- **t-SNE Visualization of SigLIP2 Embeddings**
The figure below shows a 2D t-SNE projection of image embeddings generated using [google/siglip2-base-patch16-256](https://huggingface.co/google/siglip2-base-patch16-256). Each point represents one image in the dataset.
<img src="siglip_tsne_visualization.png" alt="t-SNE Visualization" width="50%"/>
## LICENSE
This dataset is licensed under the Apache License 2.0.
## Citation
```bibtex
@misc{sugiura2025waonlargescalehighqualityjapanese,
title={WAON: Large-Scale and High-Quality Japanese Image-Text Pair Dataset for Vision-Language Models},
author={Issa Sugiura and Shuhei Kurita and Yusuke Oda and Daisuke Kawahara and Yasuo Okabe and Naoaki Okazaki},
year={2025},
eprint={2510.22276},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2510.22276},
}
```
|