Datasets:
Fangyu Liu
commited on
Commit
·
b205332
1
Parent(s):
977a9a4
Update README.md
Browse files
README.md
CHANGED
@@ -13,7 +13,11 @@ size_categories:
|
|
13 |
- 10K<n<100K
|
14 |
---
|
15 |
|
16 |
-
|
|
|
|
|
|
|
|
|
17 |
|
18 |
```python
|
19 |
from datasets import load_dataset
|
@@ -22,4 +26,18 @@ data_files = {"train": "train.jsonl", "dev": "dev.jsonl", "test": "test.jsonl"}
|
|
22 |
dataset = load_dataset("cambridgeltl/vsr_random", data_files=data_files)
|
23 |
```
|
24 |
|
25 |
-
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
- 10K<n<100K
|
14 |
---
|
15 |
|
16 |
+
# VSR: Visual Spatial Reasoning
|
17 |
+
|
18 |
+
This is the **random 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
|
|
|
26 |
dataset = load_dataset("cambridgeltl/vsr_random", 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 |
+
```
|