linjieli222 / VALUE

Video And Language Understanding Evaluation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Datat Release of VALUE (Video And Language Understanding Evaluation) Leaderboard

This is the official data release repository of VALUE Leaderboard. This repository currently supports data downloading of TVQA, TVR, TVC, VIOLIN, VLEP, How2R and How2QA.

The visual frame features are extracted using SlowFast and ResNet-152. Feature extraction code is available at HERO_Video_Feature_Extractor

Quick Start

We use VIOLIN as an end-to-end example for using this code base.

  1. Download raw annotations.

    bash download/download_violin_annotations.sh $PATH_TO_STORAGE
  2. Download visual features.

    bash download/download_violin_features.sh $PATH_TO_STORAGE

    After downloading you should see the following folder structure:

    ├── vis_features
    │   └── violin
    |       ├── id2nframe.json
    |       ├── info.json
    |       ├── 2d_resnet
    |       |   ├── xxx.npz
    |       |   ├── yyy.npz
    |       |   └── ...
    |       └── slowfast
    |           ├── xxx.npz
    |           ├── yyy.npz
    |           └── ...
    └── ann
        └── violin
            └── violin_annotations.json
    
  3. Misc.
    In case you would like to reproduce the video feature extraction:
    We provide feature extraction code at HERO_Video_Feature_Extractor. Please follow the link for instructions to extract both 2D ResNet features and 3D SlowFast features. These features are saved as separate .npz files per video.

Other Tasks

TVQA, TVR and TVC

  1. Download raw annotations.

    bash download/download_tv_annotations.sh $PATH_TO_STORAGE

    Descriptions about raw annotations, please refer to TVQA, TVR, TVC.

  2. Download visual features.

    bash download/download_tv_features.sh $PATH_TO_STORAGE

VLEP

  1. Download raw annotations.

    bash download/download_vlep_annotations.sh $PATH_TO_STORAGE

    Descriptions about raw annotations, please refer to VLEP Data README.

  2. Download visual features.

    bash download/download_vlep_features.sh $PATH_TO_STORAGE

How2R and How2QA

  1. Download raw annotations.

    bash download/download_vlep_annotations.sh $PATH_TO_STORAGE

    Descriptions about raw annotations, please refer to How2R_and_How2QA Data README.

  2. Download visual features.
    Features coming soon ....

License

MIT

About

Video And Language Understanding Evaluation


Languages

Language:Python 64.7%Language:Shell 35.3%