readme created
Browse files
README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# GenderVL-Bench
|
| 2 |
+
|
| 3 |
+
**GenderVL-Bench** is a compact vision-language benchmark for evaluating how Vision-Language Models (VLMs) interpret **gender-related representations across different occupations**.
|
| 4 |
+
|
| 5 |
+
### Dataset
|
| 6 |
+
|
| 7 |
+
* **108 images**
|
| 8 |
+
* **12 occupations**
|
| 9 |
+
* **9 images per occupation**
|
| 10 |
+
* **Format:** JPEG / ImageFolder
|
| 11 |
+
* **Split:** `train`
|
| 12 |
+
|
| 13 |
+
### Usage
|
| 14 |
+
|
| 15 |
+
```python
|
| 16 |
+
from datasets import load_dataset
|
| 17 |
+
|
| 18 |
+
dataset = load_dataset("suparnojit/GenderVL-Bench")
|
| 19 |
+
```
|
| 20 |
+
|
| 21 |
+
### Citation
|
| 22 |
+
|
| 23 |
+
```bibtex
|
| 24 |
+
@dataset{sarkar2026gendervlbench,
|
| 25 |
+
author = {Sarkar, Suparnojit},
|
| 26 |
+
title = {GenderVL-Bench},
|
| 27 |
+
year = {2026},
|
| 28 |
+
publisher = {Hugging Face},
|
| 29 |
+
url = {https://huggingface.co/datasets/suparnojit/GenderVL-Bench}
|
| 30 |
+
}
|
| 31 |
+
```
|