Update dataset card with paper link, metadata, and usage instructions
#2
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -32,16 +32,58 @@ configs:
|
|
| 32 |
data_files:
|
| 33 |
- split: train
|
| 34 |
path: synth_legs_train/train.parquet
|
|
|
|
|
|
|
| 35 |
---
|
| 36 |
|
| 37 |
-
#
|
| 38 |
|
| 39 |
-
|
| 40 |
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
data_files:
|
| 33 |
- split: train
|
| 34 |
path: synth_legs_train/train.parquet
|
| 35 |
+
task_categories:
|
| 36 |
+
- image-text-to-text
|
| 37 |
---
|
| 38 |
|
| 39 |
+
# VLM-Fix
|
| 40 |
|
| 41 |
+
[**Project Page**](https://maveryn.github.io/vlm-fix/) | [**Paper**](https://huggingface.co/papers/2604.12119) | [**GitHub**](https://github.com/maveryn/vlm-fix) | [**Interactive Demo**](https://maveryn.github.io/vlm-fix/demo/)
|
| 42 |
|
| 43 |
+
VLM-Fix is a controlled benchmark designed to study **semantic fixation** in Large Vision-Language Models (VLMs). Semantic fixation is the behavior where a model preserves a default interpretation (familiar semantic priors) even when a prompt specifies an alternative, equally valid mapping.
|
| 44 |
+
|
| 45 |
+
The benchmark covers four abstract strategy games and evaluates identical terminal board states under paired standard and inverse rule formulations to isolate perception failures from rule-mapping failures.
|
| 46 |
+
|
| 47 |
+
## Quick Start
|
| 48 |
+
|
| 49 |
+
To run the main VLM-Fix benchmark from Hugging Face, you can use the evaluation runners provided in the [GitHub repository](https://github.com/maveryn/vlm-fix):
|
| 50 |
+
|
| 51 |
+
```bash
|
| 52 |
+
# Install dependencies
|
| 53 |
+
pip install -r requirements.txt
|
| 54 |
+
|
| 55 |
+
# Run the main VLM-Fix benchmark
|
| 56 |
+
python scripts/run_vlm_fix_matrix.py \
|
| 57 |
+
--dataset-source hf \
|
| 58 |
+
--hf-repo maveryn/vlm-fix \
|
| 59 |
+
--hf-config vlm_fix \
|
| 60 |
+
--hf-split main \
|
| 61 |
+
--models Qwen/Qwen2.5-VL-7B-Instruct allenai/Molmo2-4B
|
| 62 |
+
|
| 63 |
+
# Run the text-only benchmark
|
| 64 |
+
python scripts/run_vlm_fix_text_only_matrix.py \
|
| 65 |
+
--dataset-source hf \
|
| 66 |
+
--hf-repo maveryn/vlm-fix \
|
| 67 |
+
--hf-config vlm_fix_text_only \
|
| 68 |
+
--hf-split main \
|
| 69 |
+
--models Qwen/Qwen2.5-VL-7B-Instruct
|
| 70 |
+
```
|
| 71 |
+
|
| 72 |
+
## Dataset Structure
|
| 73 |
+
|
| 74 |
+
The repository contains several configurations:
|
| 75 |
+
- `vlm_fix`: The main benchmark including images.
|
| 76 |
+
- `vlm_fix_text_only`: Text-only version of the benchmark.
|
| 77 |
+
- `vlm_fix_posttrain_d1/d2/d3`: Post-training datasets for rule-alignment studies.
|
| 78 |
+
- `synth_legs_train`: Synthetic training data.
|
| 79 |
+
|
| 80 |
+
## Citation
|
| 81 |
+
|
| 82 |
+
```bibtex
|
| 83 |
+
@article{alam2026beyond,
|
| 84 |
+
title={Beyond Perception Errors: Semantic Fixation in Large Vision-Language Models},
|
| 85 |
+
author={Alam, Md Tanvirul},
|
| 86 |
+
journal={arXiv preprint arXiv:2604.12119},
|
| 87 |
+
year={2026}
|
| 88 |
+
}
|
| 89 |
+
```
|