**Official code of the paper "Neuro-Symbolic Visual Dialog"**
Go to file
Adnen Abdessaied 9cbaf48bd6 Update 'README.md' 2023-06-14 21:50:36 +02:00
executor make code public 2022-08-10 16:49:55 +02:00
misc make code public 2022-08-10 16:49:55 +02:00
preprocess_dialogs make code public 2022-08-10 16:49:55 +02:00
prog_generator Update 'prog_generator/models.py' 2023-03-20 16:07:24 +01:00
templates make code public 2022-08-11 07:44:46 +02:00
README.md Update 'README.md' 2023-06-14 21:50:36 +02:00
clevr_utils.py make code public 2022-08-10 16:49:55 +02:00
constraints.py make code public 2022-08-10 16:49:55 +02:00
constraints_minecraft.py make code public 2022-08-10 16:49:55 +02:00
constraints_splitA.py make code public 2022-08-10 16:49:55 +02:00
constraints_splitB.py make code public 2022-08-10 16:49:55 +02:00
generate_dataset.py make code public 2022-08-10 16:49:55 +02:00
generate_dataset_minecraft.py make code public 2022-08-10 16:49:55 +02:00
global_vars.py make code public 2022-08-10 16:49:55 +02:00
minecraft_utils.py make code public 2022-08-10 16:49:55 +02:00
utils.py make code public 2022-08-10 16:49:55 +02:00
utils_preprocess.py make code public 2022-08-10 16:49:55 +02:00

README.md

Neuro-Symbolic Visual Dialog

Adnen Abdessaied,   Mihai Bâce,   Andreas Bulling

Published at COLING 2022 🇰🇷 [Paper]
📢 Oral Presentation 📢

Citation

If you find our code useful or use it in your own projects, please cite our paper:

@inproceedings{abdessaied22_coling,
  author = {Abdessaied, Adnen and Bâce, Mihai and Bulling, Andreas},
  title = {{Neuro-Symbolic Visual Dialog}},
  booktitle = {COLING},
  year = {2022},
  url = {https://aclanthology.org/2022.coling-1.17},
}

Abstract

We propose Neuro-Symbolic Visual Dialog (NSVD) —the first method to combine deep learning and symbolic program execution for multi-round visually-grounded reasoning. NSVD significantly outperforms existing purely-connectionist methods on two key challenges inherent to visual dialog: long-distance co-reference resolution as well as vanishing question-answering performance. We demonstrate the latter by proposing a more realistic and stricter evaluation scheme in which we use predicted answers for the full dialog history when calculating accuracy. We describe two variants of our model and show that using this new scheme, our best model achieves an accuracy of 99.72% on CLEVR-Dialog —a relative improvement of more than 10% over the state of the art —while only requiring a fraction of training data. Moreover, we demonstrate that our neuro-symbolic models have a higher mean first failure round, are more robust against incomplete dialog histories, and generalise better not only to dialogs that are up to three times longer than those seen during training but also to unseen question types and scenes.

Method

missingOverview of our method NSVD.

missingOverview of concat and stack encoders.

Requirements

  • PyTorch 1.3.1
  • Python 3.6
  • Ubuntu 18.04

Raw Data

Scene Data

We used CLEVR and Minecraft images in this project. The raw images have a large footprint and we won't upload them. However, we provide their json file as well as their derendedred versions:

  • Original clevr-dialog training and validation raw scenes:
  • Raw scenes we used in our experiments:
  • All derendered scenes:

Dialog Data

The dialog data we used can be found here
You can also create your own data using the generate_dataset.py script.

Preprocessing

Scenes

The derendered scenes do not need any further preprocessing and can be directly used with our neuro-symbolic executor.

Dialogs

To preprocess the dialogs, follow these steps:

cd preprocess_dialogs

For the stack encoder, execute

python preprocess.py --input_dialogs_json <path_to_raw_dialog_file> --input_vocab_json '' --output_vocab_json <path_where_to_save_the_vocab> --output_h5_file <path_of_the_output_file> --split <train/val/test> --mode stack

For the concat encoder, execute

python preprocess.py --input_dialogs_json <path_to_raw_dialog_file> --input_vocab_json '' --output_vocab_json <path_where_to_save_the_vocab> --output_h5_file <path_of_the_output_file> --split <train/val/test> --mode concat

Training

First, change directory

cd ../prog_generator

Caption Program Parser

To train the caption parser, execute

python train_caption_parser.py --mode train --run_dir <experiment_dir> --res_path <path_to_store_results> --dataPathTr <path_to_preprocessed_training_data> --dataPathVal <path_to_preprocessed_val_data> --dataPathTest <path_to_preprocessed_test_data> --vocab_path <path_where_to_save_the_vocab>

Question Program Parser

To train the question program parser with the stack encoder, execute

python train_question_parser.py --mode train --run_dir <experiment_dir> --text_log_dir <log_dir_path> --dataPathTr <path_to_preprocessed_training_data> --dataPathVal <path_to_preprocessed_val_data> --dataPathTest <path_to_preprocessed_test_data> --scenePath <path_to_derendered_scenes> --vocab_path <path_where_to_save_the_vocab> --encoder_type 2

To train the question program parser with the concat encoder, execute

python train_question_parser.py --mode train --run_dir <experiment_dir> --text_log_dir <log_dir_path> --dataPathTr <path_to_preprocessed_training_data> --dataPathVal <path_to_preprocessed_val_data> --dataPathTest <path_to_preprocessed_test_data> --scenePath <path_to_derendered_scenes> --vocab_path <path_where_to_save_the_vocab> --encoder_type 1

Baselines

Evaluation

To evaluate using the Hist+GT scheme, execute

python train_question_parser.py --mode test_with_gt --run_dir <experiment_dir> --text_log_dir <log_dir_path> --dataPathTr <path_to_preprocessed_training_data> --dataPathVal <path_to_preprocessed_val_data> --dataPathTest <path_to_preprocessed_test_data> --scenePath <path_to_derendered_scenes> --vocab_path <path_where_to_save_the_vocab> --encoder_type <1/2> --questionNetPath <path_to_pretrained_question_parser> --captionNetPath <path_to_pretrained_caption_parser> --dialogLen <total_number_of_dialog_rounds> --last_n_rounds <number_of_last_rounds_to_considered_in_history>

To evaluate using the Hist+Pred scheme, execute

python train_question_parser.py --mode test_with_pred --run_dir <experiment_dir> --text_log_dir <log_dir_path> --dataPathTr <path_to_preprocessed_training_data> --dataPathVal <path_to_preprocessed_val_data> --dataPathTest <path_to_preprocessed_test_data> --scenePath <path_to_derendered_scenes> --vocab_path <path_where_to_save_the_vocab> --encoder_type <1/2> --questionNetPath <path_to_pretrained_question_parser> --captionNetPath <path_to_pretrained_caption_parser> --dialogLen <total_number_of_dialog_rounds> --last_n_rounds <number_of_last_rounds_to_considered_in_history>

Results

We achieve new state-of-the-art performance on clevr-dialog.

Hist+GT

Model Accurcy NFFR
MAC-CQ 97.34 0.92
+ CAA 97.87 0.94
+ MTM 97.58 0.92
HCN 75.88 0.34
NSVD-concat (Ours) 99.59 0.98
NSVD-stack (Ours) 99.72 0.99

Hist+Pred

Model Accurcy NFFR
MAC-CQ 41.10 0.15
+ CAA 89.39 0.75
+ MTM 70.39 0.46
HCN 74.42 0.32
NSVD-concat (Ours) 99.59 0.98
NSVD-stack (Ours) 99.72 0.99

We refer to our paper for more results and experiments.

Acknowledgements

We thank Ahmed Shah for his MAC-XXX implemetation, Junki Ohmura for his HCN implemantation, Jiayuan Mao for providing us with the minecraft images, and finally Satwik Kottur for his clevr-dialog codebase.

Contributors

For any questions or enquiries, don't hesitate to contact the above contributor.