Skip to content

whwu95/BIKE

Repository files navigation

【CVPR'2023】🚴 BIKE: Bidirectional Cross-Modal Knowledge Exploration for Video Recognition with Pre-trained Vision-Language Models

Conference arXiv

Wenhao Wu1,2, Xiaohan Wang3, Haipeng Luo4, Jingdong Wang2, Yi Yang3, Wanli Ouyang5,1

1The University of Sydney, 2Baidu, 3ZJU, 4UCAS, 5Shanghai AI Lab


PWC PWC PWC PWC PWC PWC PWC PWC PWC

This is the official implementation of our 🚴 BIKE (BIdirectional Knowledge Exploration), which leverages cross-modal bridge to enhance video recognition by exploring bidirectional knowledge.

📣 I also have other cross-modal video projects that may interest you ✨.

Revisiting Classifier: Transferring Vision-Language Models for Video Recognition
Wenhao Wu, Zhun Sun, Wanli Ouyang
Conference Journal github

Cap4Video: What Can Auxiliary Captions Do for Text-Video Retrieval?
Wenhao Wu, Haipeng Luo, Bo Fang, Jingdong Wang, Wanli Ouyang
Accepted by CVPR 2023 as 🌟Highlight🌟 | Conference github

News

  • 🚀 Efficient Training: Almost all models can be trained using 8 NVIDIA V100 GPUs. Especially, we can train ViT-L/14 (336) backbone with 8 frames using 8 GPUs and achieve 88.3% Top-1 accuracy on Kinetics-400!
  • Apr 26, 2023: All models, configs and training logs have been released.
  • Apr 20, 2023: Main training codes have been released, including single-node/multi-node multi-GPU distributed training. Thanks for your star 😝.
  • Feb 28, 2023: 🎉Our BIKE has been accepted by CVPR-2023.

Overview

🚴BIKE explores bidirectional cross-modal knowledge from the pre-trained vision-language model (e.g., CLIP) to introduce auxiliary attributes and category-dependent temporal saliency for improved video recognition.

BIKE

Content

Prerequisites

The code is built with following libraries.

  • PyTorch >= 1.8
  • RandAugment
  • pprint
  • tqdm
  • dotmap
  • yaml
  • csv
  • Optional: decord (for on-the-fly video training)
  • Optional: torchnet (for mAP evaluation on ActivityNet)

Data Preparation

Video Loader

(Recommend) To train all of our models, we extract videos into frames for fast reading. Please refer to MVFNet repo for the detailed guide of dataset processing.
The annotation file is a text file with multiple lines, and each line indicates the directory to frames of a video, total frames of the video and the label of a video, which are split with a whitespace.

Example of annotation
abseiling/-7kbO0v4hag_000107_000117 300 0
abseiling/-bwYZwnwb8E_000013_000023 300 0

(Optional) We can also decode the videos in an online fashion using decord. This manner should work but are not tested. All of the models offered have been trained using offline frames.

Example of annotation
  abseiling/-7kbO0v4hag_000107_000117.mp4 0
  abseiling/-bwYZwnwb8E_000013_000023.mp4 0

Annotation

Annotation information consists of two parts: video label, and category description.

📱 Model Zoo

  • Firstly, we provide some GPU memory usage results during model training for your reference.
  • Then we provide some off-the-shelf pre-trained checkpoints of our models in the following tables.
    • # Inference Views = # Temporal clips x # Spatial crops

Training GPU Memory

During our training, we maintain a total batch size of 256. If your machine's GPU memory is not enough, you can reduce the batch size to reduce the memory usage. It is best to correspondingly increase the value of "grad_accumulation_steps" in the config file.

Architecture Input Batch Size (per GPU) x 8GPUs Mem. (per GPU)
ViT-B/32 8x2242 32 x 8 = 256 6G
ViT-B/16 8x2242 32 x 8 = 256 9G
ViT-L/14 8x2242 32 x 8 = 256 18G
ViT-L/14 16x2242 32 x 8 = 256 29G

Kinetics-400

Architecture Input Views Top-1(%) checkpoint Train log config
ViT-B/32 V+A 8x2242 1x1 81.4 Score log config
ViT-B/16 8x2242 4x3 84.0 Github log config
ViT-L/14* 8x2242 4x3 87.4 OneDrive log config
ViT-L/14 16x2242 4x3 88.1 OneDrive log config
ViT-L/14 8x3362 4x3 88.3 OneDrive log config
ViT-L/14 16x3362 4x3 88.7 OneDrive log config
  • The V+A represents a model that includes both the video and attributes branches. If not specified, our other provided models default to the video branch model.
  • The * indicates that in the paper, a ViT-L model with 8 frames was used for zero-shot evaluation on UCF, HMDB, ActivityNet, and Kinetics-600.

Untrimmed Video Recognition: ActivityNet

Architecture Input Views Top-1 (%) mAP (%) checkpoint Train log config
ViT-L/14 16x2242 4x1 94.4 96.3 OneDrive log config
ViT-L/14 16x3362 4x1 94.7 96.1 OneDrive log config

Multi-label Action Recognition: Charades

Architecture Input Views mAP (%) checkpoint Train log config
ViT-L/14 16x3362 4x1 50.7 OneDrive log config

UCF-101

Architecture Input Views Top-1 (%) checkpoint Train log config
ViT-L/14 16x2242 1x1 98.7 OneDrive log config
ViT-L/14 16x3362 1x1 98.9 OneDrive log config

HMDB-51

Architecture Input Views Top-1 (%) checkpoint Train log config
ViT-L/14 16x2242 1x1 82.9 OneDrive log config
ViT-L/14 16x3362 1x1 84.3 OneDrive log config

🚀 Training

This implementation supports Multi-GPU DistributedDataParallel training, which is faster and simpler than DataParallel training. Note: The JSON file containing the attributes is already available at https://github.com/whwu95/BIKE/releases/tag/v1.0.

  1. Single Machine: To train our model on Kinetics-400 with 8 GPUs in Single Machine, you can run:
# We train the 8 Frames ViT-B/32 video model (i.e., video branch).
sh scripts/run_train.sh  configs/k400/k400_train_rgb_vitb-32-f8.yaml

# We train the video branch and attributes branch.
sh scripts/run_co_train.sh  configs/k400/k400_train_video_attr_vitb-32-f8.yaml
2. Mulitple Machines: We also provide the script to train larger model with Mulitple Machines (e.g., 2 nodes have 16 GPUs).
# For example, we train the 8 Frames ViT-L/14-336 with 2 machines as follows:
# For first machine, you need to set the ip of your first machine as the --master_addr, --nnodes is 2.
# Compared with the Single-Machine training script, only one node_id needs to be added.
sh scripts/run_train_multinodes.sh configs/k400/configs/k400/k400_train_rgb_vitl-14-336-f8.yaml 0

# For second machine, --master_addr is still the ip of your first machine
sh scripts/run_train_multinodes.sh configs/k400/configs/k400/k400_train_rgb_vitl-14-336-f8.yaml 1
3. Few-shot Recognition: To train our model under Few-shot scenario, you just need to add one line in the general config file.
# You can refer to config/k400/k400_few_shot.yaml
data: 
    ...  # general configurations
    shot: 2  # i.e., 2-shot setting

⚡ Testing

We support single-view validation (default) and multi-view (4x3 views) validation.

# The testing command for obtaining top-1/top-5 accuracy.
sh scripts/run_test.sh Your-Config.yaml Your-Trained-Model.pt

# The command for zero-shot evaluation is similar.
sh scripts/run_test_zeroshot.sh Your-Config.yaml Your-Trained-Model.pt

We provide more examples of testing commands below.

General / Few-shot Video Recognition
# Efficient Setting: Single view evaluation. 
# E.g., ViT-L/14 8 Frames on Kinetics-400. You should get around 86.5% top-1 accuracy. 
sh scripts/run_test.sh  configs/k400/k400_train_rgb_vitl-14-f8.yaml exps/k400/ViT-L/14/8f/k400-vit-l-14-f8.pt

# Accurate Setting: Multi-view evalition (4clipsx3crops).
# You should get around 87.4% top-1 accuracy. 
sh scripts/run_test.sh  configs/k400/k400_train_rgb_vitl-14-f8.yaml exps/k400/ViT-L/14/8f/k400-vit-l-14-f8.pt --test_crops 3  --test_clips 4

# Test the Charades dataset using the mAP metric. You should achieve around 50.7 mAP.
sh scripts/run_test_charades.sh configs/charades/charades_k400_finetune_336.yaml exps/charades/ViT-L/14-336px/16f/charades-vit-l-336-f16.pt --test_crops 1  --test_clips 4

# Test the ActivityNet dataset using top1 and mAP metric. You should achieve around 96.3 mAP.
sh scripts/run_test.sh configs/anet/anet_k400_finetune.yaml exps/anet/ViT-L/14/f16/anet-vit-l-f16.pt --test_crops 1  --test_clips 4
Zero-shot Evaluation

We use the Kinetics-400 pre-trained model (e.g., ViT-L/14 with 8 frames) to perform cross-dataset zero-shot evaluation, i.e., UCF101, HMDB51, ActivityNet, Kinetics-600.

  • Half-classes Evaluation: A traditional evaluation protocol involves selecting half of the test dataset's classes, repeating the process ten times, and reporting the mean accuracy with a standard deviation of ten times.

  • Full-classes Evaluation: Perform evaluation on the entire dataset.

# On ActivityNet: reporting the half-classes and full-classes results
# Half-classes: 86.18 ± 1.05, Full-classes: 80.04
sh scripts/run_test_zeroshot.sh  configs/anet/anet_zero_shot.yaml exps/k400/ViT-L/14/8f/k400-vit-l-14-f8.pt

# On UCF101: reporting the half-classes and full-classes results
# Half-classes: 86.63 ± 3.4, Full-classes: 80.83
sh scripts/run_test_zeroshot.sh  configs/ucf101/ucf_zero_shot.yaml exps/k400/ViT-L/14/8f/k400-vit-l-14-f8.pt

# On HMDB51: reporting the half-classes and full-classes results
# Half-classes: 61.37 ± 3.68, Full-classes: 52.75
sh scripts/run_test_zeroshot.sh  configs/hmdb51/hmdb_zero_shot.yaml exps/k400/ViT-L/14/8f/k400-vit-l-14-f8.pt

# On Kinetics-600: manually calculating the mean accuracy with standard deviation of three splits.
# Split1: 70.14, Split2: 68.31, Split3: 67.15
# Average: 68.53 ± 1.23
sh scripts/run_test.sh  configs/k600/k600_zero_shot_split1.yaml exps/k400/ViT-L/14/8f/k400-vit-l-14-f8.pt
sh scripts/run_test.sh  configs/k600/k600_zero_shot_split2.yaml exps/k400/ViT-L/14/8f/k400-vit-l-14-f8.pt
sh scripts/run_test.sh  configs/k600/k600_zero_shot_split3.yaml exps/k400/ViT-L/14/8f/k400-vit-l-14-f8.pt

📌 BibTeX & Citation

If you use our code in your research or wish to refer to the baseline results, please use the following BibTeX entry😁.

@inproceedings{bike,
  title={Bidirectional Cross-Modal Knowledge Exploration for Video Recognition with Pre-trained Vision-Language Models},
  author={Wu, Wenhao and Wang, Xiaohan and Luo, Haipeng and Wang, Jingdong and Yang, Yi and Ouyang, Wanli},
  booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
  year={2023}
}

If you also find Text4Vis useful 😁, please cite the paper:

@article{text4vis,
  title={Revisiting Classifier: Transferring Vision-Language Models for Video Recognition},
  author={Wu, Wenhao and Sun, Zhun and Ouyang, Wanli},
  booktitle={Proceedings of AAAI Conference on Artificial Intelligence (AAAI)},
  year={2023}
}

🎗️ Acknowledgement

This repository is built based on Text4Vis, ActionCLIP, and CLIP. Sincere thanks to their wonderful works.

👫 Contact

For any question, please file an issue.