happyharrycn / actionformer_release

Code release for ActionFormer (ECCV 2022)
MIT License
415 stars 77 forks source link
action-localization computer-vision deeplearning eccv2022 video-analysis vision-transformer

ActionFormer: Localizing Moments of Actions with Transformers

Introduction

This code repo implements Actionformer, one of the first Transformer-based model for temporal action localization --- detecting the onsets and offsets of action instances and recognizing their action categories. Without bells and whistles, ActionFormer achieves 71.0% mAP at tIoU=0.5 on THUMOS14, outperforming the best prior model by 14.1 absolute percentage points and crossing the 60% mAP for the first time. Further, ActionFormer demonstrates strong results on ActivityNet 1.3 (36.56% average mAP) and the more challenging EPIC-Kitchens 100 (+13.5% average mAP over prior works). Our paper is accepted to ECCV 2022 and an arXiv version can be found at this link.

In addition, ActionFormer is the backbone for many winning solutions in the Ego4D Moment Queries Challenge 2022. Our submission in particular is ranked 2nd with a record 21.76% average mAP and 42.54% Recall@1x, tIoU=0.5, nearly three times higher than the official baseline. An arXiv version of our tech report can be found at this link. We invite our audience to try out the code.

Specifically, we adopt a minimalist design and develop a Transformer based model for temporal action localization, inspired by the recent success of Transformers in NLP and vision. Our method, illustrated in the figure, adapts local self-attention to model temporal context in untrimmed videos, classifies every moment in an input video, and regresses their corresponding action boundaries. The result is a deep model that is trained using standard classification and regression loss, and can localize moments of actions in a single shot, without using action proposals or pre-defined anchor windows.

Related projects:

SnAG: Scalable and Accurate Video Grounding
Fangzhou Mu*, Sicheng Mo*, Yin Li
CVPR 2024
github github arXiv

Changelog

Code Overview

The structure of this code repo is heavily inspired by Detectron2. Some of the main components are

Installation

Frequently Asked Questions

To Reproduce Our Results on THUMOS14

Download Features and Annotations

Details: The features are extracted from two-stream I3D models pretrained on Kinetics using clips of 16 frames at the video frame rate (~30 fps) and a stride of 4 frames. This gives one feature vector per 4/30 ~= 0.1333 seconds.

Unpack Features and Annotations

Training and Evaluation

[Optional] Evaluating Our Pre-trained Model

We also provide a pre-trained model for THUMOS 14. The model with all training logs can be downloaded from this Google Drive link. To evaluate the pre-trained model, please follow the steps listed below.

Method 0.3 0.4 0.5 0.6 0.7 Avg
ActionFormer 82.13 77.80 70.95 59.40 43.87 66.83

To Reproduce Our Results on ActivityNet 1.3

Download Features and Annotations

Details: The features are extracted from the R(2+1)D-34 model pretrained with TSP on ActivityNet using clips of 16 frames at a frame rate of 15 fps and a stride of 16 frames (i.e., non-overlapping clips). This gives one feature vector per 16/15 ~= 1.067 seconds. The features are converted into numpy files for our code.

Unpack Features and Annotations

Training and Evaluation

[Optional] Evaluating Our Pre-trained Model

We also provide a pre-trained model for ActivityNet 1.3. The model with all training logs can be downloaded from this Google Drive link. To evaluate the pre-trained model, please follow the steps listed below.

Method 0.5 0.75 0.95 Avg
ActionFormer 54.67 37.81 8.36 36.56

[Optional] Reproducing Our Results with I3D Features

Details: The features are extracted from the I3D model pretrained on Kinetics using clips of 16 frames at a frame rate of 25 fps and a stride of 16 frames. This gives one feature vector per 16/25 = 0.64 seconds. The features are converted into numpy files for our code.

Method 0.5 0.75 0.95 Avg
ActionFormer 54.29 36.71 8.24 36.03

To Reproduce Our Results on EPIC Kitchens 100

Download Features and Annotations

Details: The features are extracted from the SlowFast model pretrained on the training set of EPIC Kitchens 100 (action classification) using clips of 32 frames at a frame rate of 30 fps and a stride of 16 frames. This gives one feature vector per 16/30 ~= 0.5333 seconds.

Unpack Features and Annotations

Training and Evaluation

[Optional] Evaluating Our Pre-trained Model

We also provide a pre-trained model for EPIC-Kitchens 100. The model with all training logs can be downloaded from this Google Drive link (verb), and from this Google Drive link (noun). To evaluate the pre-trained model, please follow the steps listed below.

Method 0.1 0.2 0.3 0.4 0.5 Avg
ActionFormer (verb) 26.58 25.42 24.15 22.29 19.09 23.51
ActionFormer (noun) 25.21 24.11 22.66 20.47 16.97 21.88

To Reproduce Our Results on Ego4D Moment Queries Benchmark

Download Features and Annotations

Details: All features are extracted at 1.875 fps from videos at 30 fps. This gives one feature vector per ~0.5333 seconds. Please refer to Ego4D and EgoVLP's documentation for more details on feature extraction.

Unpack Features and Annotations

Training and Evaluation

[Optional] Evaluating Our Pre-trained Model

We also provide pre-trained models for Ego4D trained with all feature combinations. The models with all training logs can be downloaded from this Google Drive link. To evaluate the pre-trained model, please follow the steps listed below.

Method 0.1 0.2 0.3 0.4 0.5 Avg
ActionFormer (S) 20.09 17.45 14.44 12.46 10.00 14.89
ActionFormer (O) 23.87 20.78 18.39 15.33 12.65 18.20
ActionFormer (E) 26.84 23.86 20.57 17.19 14.54 20.60
ActionFormer (S+E) 27.98 24.46 21.21 18.56 15.60 21.56
ActionFormer (O+E) 27.99 24.94 21.94 19.05 15.98 21.98
ActionFormer (S+O+E) 28.26 24.69 21.88 19.35 16.28 22.09
Method 0.1 0.2 0.3 0.4 0.5 Avg
ActionFormer (S) 52.25 45.84 40.60 36.58 31.33 41.32
ActionFormer (O) 54.63 48.72 43.03 37.76 33.57 43.54
ActionFormer (E) 59.53 54.39 48.97 42.75 37.12 48.55
ActionFormer (S+E) 59.96 53.75 48.76 44.00 38.96 49.09
ActionFormer (O+E) 61.03 54.15 49.79 45.17 39.88 49.99
ActionFormer (S+O+E) 60.85 54.16 49.60 45.12 39.87 49.92

Training and Evaluating Your Own Dataset

Work in progress. Stay tuned.

Contact

Yin Li (yin.li@wisc.edu)

References

If you are using our code, please consider citing our paper.

@inproceedings{zhang2022actionformer,
  title={ActionFormer: Localizing Moments of Actions with Transformers},
  author={Zhang, Chen-Lin and Wu, Jianxin and Li, Yin},
  booktitle={European Conference on Computer Vision},
  series={LNCS},
  volume={13664},
  pages={492-510},
  year={2022}
}

If you cite our results on Ego4D, please consider citing our tech report in addition to the main paper.

@article{mu2022actionformerego4d,
  title={Where a Strong Backbone Meets Strong Features -- ActionFormer for Ego4D Moment Queries Challenge},
  author={Mu, Fangzhou and Mo, Sicheng and Wang, Gillian, and Li, Yin},
  journal={arXiv e-prints},
  year={2022}
}

If you are using TSP features, please cite

@inproceedings{alwassel2021tsp,
  title={{TSP}: Temporally-sensitive pretraining of video encoders for localization tasks},
  author={Alwassel, Humam and Giancola, Silvio and Ghanem, Bernard},
  booktitle={Proceedings of the IEEE/CVF International Conference on Computer Vision Workshops},
  pages={3173--3183},
  year={2021}
}