Update README.md
Browse files
README.md
CHANGED
|
@@ -42,12 +42,23 @@ configs:
|
|
| 42 |
WAON-Bench is a manually curated image classification dataset designed to benchmark Vision-Language models on Japanese culture.
|
| 43 |
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.
|
| 44 |
|
|
|
|
|
|
|
| 45 |
## How to Use
|
|
|
|
|
|
|
|
|
|
| 46 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 47 |
```python
|
| 48 |
from datasets import load_dataset
|
| 49 |
|
| 50 |
-
ds = load_dataset("
|
| 51 |
```
|
| 52 |
|
| 53 |
## Data Collection Pipeline
|
|
|
|
| 42 |
WAON-Bench is a manually curated image classification dataset designed to benchmark Vision-Language models on Japanese culture.
|
| 43 |
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.
|
| 44 |
|
| 45 |
+
|
| 46 |
+
|
| 47 |
## How to Use
|
| 48 |
+
⚠️ This repository is a mirror of the original dataset hosted at https://gitlab.llm-jp.nii.ac.jp/datasets/WAON-Bench
|
| 49 |
+
|
| 50 |
+
Due to copyright restrictions, WAON-Bench dataset with images is hosted only on a domestic server and are not included in this mirror.
|
| 51 |
|
| 52 |
+
To use WAON-Bench, first download the dataset from:
|
| 53 |
+
```python
|
| 54 |
+
git clone https://gitlab.llm-jp.nii.ac.jp/datasets/WAON-Bench
|
| 55 |
+
mv WAON-Bench/data .
|
| 56 |
+
```
|
| 57 |
+
After placing the dataset directory locally, you can load each dataset using the 🤗 datasets library:
|
| 58 |
```python
|
| 59 |
from datasets import load_dataset
|
| 60 |
|
| 61 |
+
ds = load_dataset("data")
|
| 62 |
```
|
| 63 |
|
| 64 |
## Data Collection Pipeline
|