Skip to the content.

Live Demo


Command: x


Command pattern: x

Action sequence: x

ReaSCAN: Compositional Reasoning in Language Grounding

ReaSCAN is a synthetic navigation task that requires models to reason about surroundings over syntactically difficult languages.

Release Notes

Getting Started

Step 1: Download ReaSCAN

We generated ReaSCAN using our pipeline with fixed random seeds. You can reproduce the version of ReaSCAN we use in the paper by running the pipeline. Additionally, we also update the version we use to a online folder where you can directly download and use as-it-is. Note that, the dataset files are really large. It may take a while to download them.

Our generated data is in ReaSCAN-v1.1.zip (Note that we updated our files to hotfix some of existing issues on 06/16/2021. We also included newer non-generalization testing sets on 11/28/2021), which is saved in a shared drive. The dataset consists subsets generated for different patterns (P1: Simple (similar to gSCAN), P2: 1-relative-clause, P3: 2-relative-clauses, P4: 3-relative-clauses) and different compositional splits (see our paper for details about each split).

Random splits that can be used for training your models,

Compositional splits that are designed to be zero-shot testing splits,

You can also generate your own compositional splits by modifying couple lines in code/dataset/generate_ReaSCAN_splits.ipynb.

Step 2: Loading ReaSCAN

Once you generate the dataset .txt file (in json format), you can simply load any dataset as,

import json

path_to_data = "data-compositional-splits.txt"
logger.info(f"Reading dataset from file: {p1_path_to_data}...")
data_json = json.load(open(path_to_data, "r"))

print(data_json["examples"].keys())

Leaderboard

This section contains the leaderboard for scores obtained by papers on ReaSCAN. To add scores please consider a pull request.

  M-LSTM [1] GCN-LSTM [2]
Random 79.04 +- 1.24 98.96 +- 0.59
A1: novel color modifier 50.36 +- 4.03 92.25 +- 0.77
A2: novel color attribute 14.65 +- 0.55 42.05 +- 4.55
A3: novel size modifier 50.98 +- 3.69 87.46 +- 2.22
B1: novel co-occurrence of objects 52.17 +- 1.63 69.74 +- 0.30
B2: novel co-occurrence of relations 39.41 +- 1.53 52.80 +- 2.75
C1: novel conjunctive clause length 49.68 +- 2.73 57.01 +- 7.99
C2: novel relative clauses 25.74 +- 1.36 22.07 +- 2.66
Avg ReaSCAN Score 40.43 60.48

[1] Laura Ruis, Jacob Andreas, Marco Baroni, Diane Bouchacourt, Brenden M. Lake. 2020. “A Benchmark for Systematic Generalization in Grounded Language Understanding “ in NeurIPS 2020.

[2] Tong Gao, Qi Huang, Raymond J. Mooney. 2020. “Systematic Generalization on gSCAN with Language Conditioned Embedding” in AACL-IJCNLP 2020.

Caveats: The random split here is the same one used in our paper. Numbers may change with updated random split.

Usage

If you are using ReaSCAN, please consider to cite our paper as,

  @article{wu-etal-2021-reascan,
    title={Rea{SCAN}: Compositional Reasoning in Language Grounding},
    author={Wu, Zhengxuan and Kreiss, Elisa and Ong, Desmond C. and Potts, Christopher},
    journal={NeurIPS 2021 Datasets and Benchmarks Track},
    url={https://openreview.net/forum?id=Rtquf4Jk0jN},
    year={2021}}