michaelszx
commited on
Commit
•
6d85938
1
Parent(s):
5cf0841
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,49 @@
|
|
1 |
---
|
2 |
license: mit
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
---
|
4 |
+
|
5 |
+
## Dataset Description
|
6 |
+
We have three files in the dataset (`k` is the number of maximum hops required to answer the question in the dataset):
|
7 |
+
- `train.json`: The "TrainVersion" is utilised in the baseline models presented in our paper. We use k=1,2,3,4,5 for training without noise.
|
8 |
+
- `valid.json`: The "TrainVersion" is utilised in the baseline models presented in our paper. We use k=1,2,3,4,5 for validation without noise.
|
9 |
+
- `test.json`: The "TrainVersion" is utilised in the baseline models presented in our paper. We use k=1,2,3,4,5,6,7,8,9,10 for testing with noise.
|
10 |
+
|
11 |
+
## Dataset Feature
|
12 |
+
In StepGame dataset, we have 4 features:
|
13 |
+
- story: A list of strings that describe the spatial relations between the agents.
|
14 |
+
- question: A string that asks a question about the spatial relations between two agents.
|
15 |
+
- label: A string that describes the spatial relation between the agents.
|
16 |
+
- k_hop: A string that describes the number of hops required to answer the question.
|
17 |
+
|
18 |
+
## Dataset Example
|
19 |
+
Here is an example of a sample from the dataset:
|
20 |
+
```
|
21 |
+
{
|
22 |
+
"story": [
|
23 |
+
"S is above J and to the left of J.",
|
24 |
+
"J is diagonally above B to the right at a 45 degree.",
|
25 |
+
"V is there and A is at the 2 position of a clock face."
|
26 |
+
],
|
27 |
+
"question": "What is the relation of the agent B to the agent J?",
|
28 |
+
"label": "lower-left",
|
29 |
+
"k_hop": "1"
|
30 |
+
}
|
31 |
+
```
|
32 |
+
|
33 |
+
## Source:
|
34 |
+
This dataset is sourced from the paper "StepGame: A New Benchmark for Robust Multi-Hop Spatial Reasoning in Texts" by Zhengxiang Shi, Qiang Zhang, and Aldo Lipani. The dataset is available at https://github.com/ZhengxiangShi/StepGame.
|
35 |
+
|
36 |
+
## Reference:
|
37 |
+
```
|
38 |
+
@inproceedings{stepGame2022shi,
|
39 |
+
title={StepGame: A New Benchmark for Robust Multi-Hop Spatial Reasoning in Texts},
|
40 |
+
author={Shi, Zhengxiang and Zhang, Qiang and Lipani, Aldo},
|
41 |
+
volume={36},
|
42 |
+
url={https://ojs.aaai.org/index.php/AAAI/article/view/21383},
|
43 |
+
DOI={10.1609/aaai.v36i10.21383},
|
44 |
+
booktitle={Proceedings of the AAAI Conference on Artificial Intelligence},
|
45 |
+
year={2022},
|
46 |
+
month={Jun.},
|
47 |
+
pages={11321-11329}
|
48 |
+
}
|
49 |
+
```
|