Add dataset card and link to paper
#2
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,3 +1,36 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- zero-shot-image-classification
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# N-COCO
|
| 8 |
+
|
| 9 |
+
This dataset is associated with the paper [When Negation Is a Geometry Problem in Vision-Language Models](https://huggingface.co/papers/2603.20554).
|
| 10 |
+
|
| 11 |
+
N-COCO is a dataset designed to evaluate and improve negation understanding in Vision-Language Models (VLMs) like CLIP. The work identifies that a "negation direction" exists in the CLIP embedding space and can be manipulated via representation engineering to improve performance without fine-tuning.
|
| 12 |
+
|
| 13 |
+
- **Repository:** [https://github.com/fawazsammani/negation-steering](https://github.com/fawazsammani/negation-steering)
|
| 14 |
+
- **Paper:** [When Negation Is a Geometry Problem in Vision-Language Models](https://huggingface.co/papers/2603.20554)
|
| 15 |
+
|
| 16 |
+
## Dataset Description
|
| 17 |
+
|
| 18 |
+
The dataset includes the following files used for training and evaluation:
|
| 19 |
+
|
| 20 |
+
- `train_data.json`: Contains positive-negative sentence pairs used to train layerwise steering directions.
|
| 21 |
+
- `simpleneg.json`: An evaluation benchmark for negation understanding.
|
| 22 |
+
|
| 23 |
+
## Citation
|
| 24 |
+
|
| 25 |
+
If you find this work or dataset useful, please consider citing:
|
| 26 |
+
|
| 27 |
+
```bibtex
|
| 28 |
+
@misc{sammani2026negationgeometry,
|
| 29 |
+
title={When Negation Is a Geometry Problem in Vision-Language Models},
|
| 30 |
+
author={Fawaz Sammani and Tzoulio Chamiti and Paul Gavrikov and Nikos Deligiannis},
|
| 31 |
+
year={2026},
|
| 32 |
+
eprint={2603.20554},
|
| 33 |
+
archivePrefix={arXiv},
|
| 34 |
+
primaryClass={cs.CV}
|
| 35 |
+
}
|
| 36 |
+
```
|