This repository contains the official PyTorch implementation of:
Neural Message Passing for Visual Relationship Detection Yue Hu, Siheng Chen, Xu Chen, Ya Zhang, Xiao Gu
Abstract: Visual relationship detection aims to detect the interactions between objects in an image; however, this task suffers from combinatorial explosion due to the variety of objects and interactions. Since the interactions associated with the same object are dependent, we explore the dependency of interactions to reduce the search space. We explicitly model objects and interactions by an interaction graph and then propose a message-passing-style algorithm to propagate the contextual information. We thus call the proposed method neural message passing (NMP). We further integrate language priors and spatial cues to rule out unrealistic interactions and capture spatial interactions. Experimental results on two benchmark datasets demonstrate the superiority of our proposed method.
Here we use vrd dataset and predicate detection as example.
CUDA_VISIBLE_DEVICES=0 python extract_vgg_feature.py --dataset=vrd --data_type=pred
python process.py --dataset=vrd --data-type=pred
The final folder should be
├── dataset
├── vrd
├── sg_dataset
├── sg_test_images
├── sg_train_images
├── vg
├── VG_100K
└── data
└── pretrained
├── vrd/vg_objects_vec.npy
├── vrd/vg_roidb.npz
├── vrd/vg_rela_roidb.npz
├── vrd/vg_pred_graph_roidb.np
├── vrd/vg_rela_graph_roidb.np
└── vrd/vg_so_prior.npy
└── checkpoints
├── DataLoader.py
├── eval_metrics.py
├── modules.py
├── train_vg.py
├── train_vrd.py
├── utils.py
└── visualize.py
# train
CUDA_VISIBLE_DEVICES=0 python train_vrd.py --encoder=nmp --use-loc --mode=whole --feat-mode=full
# eval
CUDA_VISIBLE_DEVICES=0 python train_vrd.py --encoder=nmp --use-loc --mode=eval --feat-mode=full --restore --load-folder=exp0
@inproceedings{HuCCZG:19,
author = {Yue Hu, Siheng Chen, Xu Chen, Ya Zhang, Xiao Gu},
title = {Neural Message Passing for Visual Relationship Detection},
booktitle = {ICML Workshop on Learning and Reasoning with Graph-Structured Representations},
year = {2019},
month = {June},
address = {Long Beach, CA}
}
If you have any problem with this code, please feel free to contact 18671129361@sjtu.edu.cn.