Update README.md
Browse files
README.md
CHANGED
|
@@ -23,9 +23,19 @@ configs:
|
|
| 23 |
---
|
| 24 |
|
| 25 |
# WAON-Bench: Japanese Cultural Image Classification Dataset
|
|
|
|
|
|
|
|
|
|
| 26 |
WAON-Bench is a manually curated image classification dataset designed to benchmark Vision-Language models on visual understanding of Japanese culture.
|
| 27 |
It comprises 374 classes, each containing 5 images, covering a diverse range of cultural, natural, and everyday aspects of Japanese life.
|
| 28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
|
| 30 |
## Data Collection Pipeline
|
| 31 |
We followed the pipeline below to construct the dataset:
|
|
@@ -71,6 +81,12 @@ Example:
|
|
| 71 |
| scenery | '茶畑', '雪国の街並み', '漁港', '砂防ダム', '石垣', ...|
|
| 72 |
| tradition| '華道', 剣道', '柔道', '弓道', ...|
|
| 73 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 74 |
|
| 75 |
|
| 76 |
|
|
|
|
| 23 |
---
|
| 24 |
|
| 25 |
# WAON-Bench: Japanese Cultural Image Classification Dataset
|
| 26 |
+
|
| 27 |
+
<img src="WAON-Bench.jpg" alt="Overview of WAON-Bench" width="80%"/>
|
| 28 |
+
|
| 29 |
WAON-Bench is a manually curated image classification dataset designed to benchmark Vision-Language models on visual understanding of Japanese culture.
|
| 30 |
It comprises 374 classes, each containing 5 images, covering a diverse range of cultural, natural, and everyday aspects of Japanese life.
|
| 31 |
|
| 32 |
+
## How to Use
|
| 33 |
+
|
| 34 |
+
```python
|
| 35 |
+
from datasets import load_dataset
|
| 36 |
+
|
| 37 |
+
ds = load_dataset("speed/WAON-Bench")
|
| 38 |
+
```
|
| 39 |
|
| 40 |
## Data Collection Pipeline
|
| 41 |
We followed the pipeline below to construct the dataset:
|
|
|
|
| 81 |
| scenery | '茶畑', '雪国の街並み', '漁港', '砂防ダム', '石垣', ...|
|
| 82 |
| tradition| '華道', 剣道', '柔道', '弓道', ...|
|
| 83 |
|
| 84 |
+
- **t-SNE Visualization of SigLIP2 Embeddings**
|
| 85 |
+
|
| 86 |
+
|
| 87 |
+
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.
|
| 88 |
+
|
| 89 |
+
<img src="siglip_tsne_visualization.png" alt="t-SNE Visualization" width="50%"/>
|
| 90 |
|
| 91 |
|
| 92 |
|