noagarcia / ROLL-VideoQA

PyTorch code for ROLL, a knowledge-based video story question answering model.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Knowledge-Based Video Question Answering with Unsupervised Scene Descriptions

This is the PyTorch implementation of our ROLL model for VideoQA. ROLL has been recently published at ECCV 2020. Find the technical paper here.

roll

ROLL consists on three branches, each performing a different inspired-cognitive task:

  1. Read branch: Dialog comprehension.
  2. Observe branch: Visual scene reasoning.
  3. Recall branch: Storyline recalling.

The information generated by each branch is encoded via Transformers. A modality weighting mechanism balances the output from the different modalities to predict the final answer.

Dependencies

This code runs on Python 3.6 and PyTorch 1.0.1. We recommend using Anaconda to install the dependencies.

conda create --name roll-videoqa python=3.6
conda activate roll-videoqa
conda install -c anaconda numpy pandas scikit-learn 
conda install -c conda-forge visdom tqdm
conda install pytorch==1.0.1 torchvision==0.2.2 -c pytorch
pip install pytorch-transformers

Data

For data preparation, follow instructions in DATA.md.

ROLL on KnowIT VQA

  1. Start Visdom Server. To visualize the training plots, first start the Visdom server: python -m visdom.server. Plots can be found by visiting http://localhost:8097 in a browser.
  2. Pretrain branches. The three branches (read, observe, recall) are first pretrained independently:
    # Read branch training using the subtitles
    python Source/branch_read.py --dataset knowit
    
    # Recall branch training using the video summaries
    python Source/branch_recall.py --dataset knowit
    
    # For the observe branch, the video descriptions need to be computed first.
    # The descriptions will be at Data/knowit_observe/scenes_descriptions.csv
    python Source/generate_scene_description.py knowit
    
    # Observe branch training using the generated descriptions
    python Source/branch_observe.py --dataset knowit
    
  3. Multimodality fusion. The outputs from the branches are fused and the network is trained one last time using the modality weighting mechanism.
    python Source/fuse_branches.py --dataset knowit
    

ROLL on TVQA+

TODO.

Citation

If you find this code useful, please cite our work:

@InProceedings{garcia2020knowledge,
   author    = {Noa Garcia and Yuta Nakashima},
   title     = {Knowledge-Based Video Question Answering with Unsupervised Scene Descriptions},
   booktitle = {Proceedings of the European Conference on Computer Vision},
   year      = {2020},
}
@InProceedings{garcia2020knowit,
   author    = {Noa Garcia and Mayu Otani and Chenhui Chu and Yuta Nakashima},
   title     = {KnowIT VQA: Answering Knowledge-Based Questions about Videos},
   booktitle = {Proceedings of the Thirty-Fourth AAAI Conference on Artificial Intelligence},
   year      = {2020},
}

TODO

  • TVQA+ code

About

PyTorch code for ROLL, a knowledge-based video story question answering model.

License:MIT License


Languages

Language:Python 100.0%