Fangyu Liu
commited on
Commit
·
148b377
1
Parent(s):
f27dca7
Update README.md
Browse files
README.md
CHANGED
|
@@ -11,4 +11,33 @@ tags:
|
|
| 11 |
pretty_name: VSR (zeroshot)
|
| 12 |
size_categories:
|
| 13 |
- 1K<n<10K
|
| 14 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
pretty_name: VSR (zeroshot)
|
| 12 |
size_categories:
|
| 13 |
- 1K<n<10K
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
# VSR: Visual Spatial Reasoning
|
| 17 |
+
|
| 18 |
+
This is the **zero-shot set** of **VSR**: *Visual Spatial Reasoning* (TACL 2023) [[paper]](https://arxiv.org/abs/2205.00363).
|
| 19 |
+
|
| 20 |
+
### Usage
|
| 21 |
+
|
| 22 |
+
```python
|
| 23 |
+
from datasets import load_dataset
|
| 24 |
+
|
| 25 |
+
data_files = {"train": "train.jsonl", "dev": "dev.jsonl", "test": "test.jsonl"}
|
| 26 |
+
dataset = load_dataset("cambridgeltl/vsr_zeroshot", data_files=data_files)
|
| 27 |
+
```
|
| 28 |
+
|
| 29 |
+
Note that the image files still need to be downloaded separately. See [`data/`](https://github.com/cambridgeltl/visual-spatial-reasoning/tree/master/data) for details.
|
| 30 |
+
|
| 31 |
+
Go to our [github repo](https://github.com/cambridgeltl/visual-spatial-reasoning) for more introductions.
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
### Citation
|
| 35 |
+
If you find VSR useful:
|
| 36 |
+
```bibtex
|
| 37 |
+
@article{Liu2022VisualSR,
|
| 38 |
+
title={Visual Spatial Reasoning},
|
| 39 |
+
author={Fangyu Liu and Guy Edward Toh Emerson and Nigel Collier},
|
| 40 |
+
journal={Transactions of the Association for Computational Linguistics},
|
| 41 |
+
year={2023},
|
| 42 |
+
}
|
| 43 |
+
```
|