The official repository for our paper "The Neural Data Router: Adaptive Control Flow in Transformers Improves Systematic Generalization".
Paper: https://arxiv.org/abs/2110.07732
Please note that this repository is a cleaned-up version of the internal research repository we use. In case you encounter any problems with it, please don't hesitate to contact me.
This project requires Python 3 (tested with Python 3.8 and 3.9) and PyTorch 1.8.
pip3 install -r requirements.txt
Create a Weights and Biases account and run
wandb login
More information on setting up Weights and Biases can be found on https://docs.wandb.com/quickstart.
For plotting, LaTeX is required (to avoid Type 3 fonts and to render symbols). Installation is OS specific.
The code makes use of Weights and Biases for experiment tracking. In the sweeps
directory, we provide sweep configurations for all experiments we have performed. The sweeps are officially meant for hyperparameter optimization, but we use them to run multiple configurations and seeds.
To reproduce our results, start a sweep for each of the YAML files in the sweeps
directory. Run wandb agent for each of them in the root directory of the project. This will run all the experiments, and they will be displayed on the W&B dashboard. The name of the sweeps must match the name of the files in sweeps
directory, except the .yaml
ending. More details on how to run W&B sweeps can be found at https://docs.wandb.com/sweeps/quickstart. If you want to use a Linux cluster to run the experiments, you might find https://github.com/robertcsordas/cluster_tool useful.
For example, if you want to run NDR on compositional table lookup, run wandb sweep --name ctl_ndr sweeps/ctl_ndr.yaml
. This creates the sweep and prints out its ID. Then run wandb agent <ID>
with that ID.
Edit config file paper/config.json
. Enter your project name in the field "wandb_project" (e.g. "username/project").
Run the scripts in the paper
directory. For example:
cd paper
./run_all.sh
The output will be generated in the paper/out/
directory. Tables will be printed to stdout in latex format.
If you want to reproduce individual plots, it can be done by running individial python files in the paper
directory.
It is possible to run single experiments with Tensorboard without using Weights and Biases. This is intended to be used for debugging the code locally.
If you want to run experiments locally, you can use run.py
:
./run.py sweeps/ctl_ndr.yaml
If the sweep in question has multiple parameter choices, run.py
will interactively prompt choices of each of them.
The experiment also starts a Tensorboard instance automatically on port 7000. If the port is already occupied, it will incrementally search for the next free port.
Note that the plotting scripts work only with Weights and Biases.
In case some tasks won't fit on your GPU, play around with "-max_length_per_batch " argument. It can trade off memory usage/speed by slicing batches and executing them in multiple passes. Reduce it until the model fits.
@article{csordas2021neural,
title={The Neural Data Router: Adaptive Control Flow in Transformers Improves Systematic Generalization},
author={R\'obert Csord\'as and Kazuki Irie and J\"urgen Schmidhuber},
journal={Preprint arXiv:2110.07732},
year={2021},
month={October}
}