Zero-shot Natural Language Video Localization (ZSNLVL) by Pseudo-Supervised Video Localization (PSVL)
This repository is for Zero-shot Natural Language Video Localization. (ICCV 2021, Oral)
We first propose a novel task of zero-shot natural language video localization. The proposed task setup does not require any paired annotation cost for NLVL task but only requires easily available text corpora, off-the-shelf object detector, and a collection of videos to localize. To address the task, we propose a Pseudo-Supervised Video Localization method, called PSVL, that can generate pseudo-supervision for training an NLVL model. Benchmarked on two widely used NLVL datasets, the proposed method exhibits competitive performance and performs on par or outperforms the models trained with stronger supervision.
This repository is implemented base on PyTorch with Anaconda.
Refer to below instruction or use Docker (dcahn/psvl:latest).
- Clone this repo with git, please use:
git clone https://github.com/gistvision/PSVL.git
- Make your own environment (If you use docker envronment, you just clone the code and execute it.)
conda create --name PSVL --file requirements.txt
conda activate PSVL
- RTX2080Ti (11G)
- Ubuntu 18.04.5
- pytorch 1.5.1
-
This link is connected for downloading video features used in this paper.
: After downloading the video feature, you need to set thedata path
in a config file. -
This link is connected for downloading pre-trained model.
For ActivityNet-Captions, check Activinet-Captions section of this document.
If you want to evaluate the pre-trained model, you can use below command.
python inference.py --model CrossModalityTwostageAttention --config "YOUR CONFIG PATH" --pre_trained "YOUR MODEL PATH"
To train PSVL, run train.py
with below command.
# Training from scratch
python train.py --model CrossModalityTwostageAttention --config "YOUR CONFIG PATH"
# Evaluation
python inference.py --model CrossModalityTwostageAttention --config "YOUR CONFIG PATH" --pre_trained "YOUR MODEL PATH"
-
Go to this repository, and download the video features for ActiviNet-Captions.
Place the data under/dataset/lgi_video_feature/anet_feats
. -
Other data can be downloaded from this link.
Please download the file, unzip it, and type followings to train/inference with the data.
To train the model, please run:
python train.py --model CrossModalityTwostageAttention --config configs/anet_simple_model/simplemodel_anet_BS256_two-stage_attention.yml --dataset anet
To inference with test set, please run:
python inference.py --model CrossModalityTwostageAttention --config configs/anet_simple_model/simplemodel_anet_BS256_two-stage_attention.yml --pre_trained anet_pretrained_best.pth
MIT Lisence
If you use this code, please cite:
@inproceedings{nam2021zero,
title={Zero-shot Natural Language Video Localization},
author={Nam, Jinwoo and Ahn, Daechul and Kang, Dongyeop and Ha, Seong Jong and Choi, Jonghyun},
booktitle={Proceedings of the IEEE/CVF International Conference on Computer Vision},
pages={1470-1479},
year={2021}
}
If you have any questions, please send e-mail to me ([email protected], [email protected])