Official Pytorch Implementation of "Enlarge Instance-specific and Class-specific Information for Open-set Action Recognition",
Jun CEN, Shiwei Zhang, Xiang Wang, Yixuan Pei, Zhiwu Qing, Yingya Zhang, Qifeng Chen. In CVPR 2023.
Open-set action recognition is to reject unknown human action cases which are out of the distribution of the training set. Existing methods mainly focus on learning better uncertainty scores but dismiss the importance of the feature representations. We find that features with richer semantic diversity can significantly improve the open-set performance under the same uncertainty scores. In this paper, we begin with analyzing the feature representation behavior in the open-set action recognition (OSAR) problem based on the information bottleneck (IB) theory, and propose to enlarge the instance-specific (IS) and class-specific (CS) information contained in the feature for better performance. For this reason, a novel Prototypical Similarity Learning (PSL) framework is proposed to keep the instance variance within the same class to retain more IS information. Besides, we notice that unknown samples sharing similar appearances to known samples are easily misclassified as known classes. To alleviate this issue, video shuffling is further introduced in our PSL to learn distinct temporal information between the original and shuffled samples, which we find enlarges the CS information. Extensive experiments demonstrate that the proposed PSL can significantly boost both the open-set and closed-set performance and achieves state-of-the-art results on multiple benchmarks.
This repo is developed from Alibaba-mmai-research codebase.
- Python>=3.6
- torch>=1.5
- torchvision (version corresponding with torch)
- simplejson==3.11.1
- decord>=0.6.0
- pyyaml
- einops
- oss2
- psutil
- tqdm
- pandas
We follow the datasets setting with DEAR. UCF-101 is for closed-set training, and HMDB-51 and MiT-v2 are for open-set testing.
Please refer to ./evaluation_code/README.md
for instructions.
We provide the training code with TSM backbone as an example.
python tools/run_net.py --cfg configs/projects/openset/tsm/tsm_psl.yaml
The K400 pre-trained model is here.
python tools/run_net.py --cfg configs/projects/openset/tsm/tsm_psl_ft.yaml
We use 8 V100 (32G) or 4 A100 (80G) with batch size 128 for training. The training consumes around 16 hours.
After training, we store all data required for open-set testing in output/test/tsm_maha_distance.npz
. Then run
cd tools/scripts
./compute_openness.sh
You should get the closed-set accuracy, open-set AUROC, AUPR, and FPR95.
We provide the pre-trained weights (checkpoints) of TSM.
Model | Checkpoint | Train Config | Closed Set ACC (%) | AUROC (%) | AUPR (%) | FPR95 (%) |
---|---|---|---|---|---|---|
PSL | ckpt | train | 77.38 | 86.10 | 64.66 | 43.68 |
PSL+K400 pretrain | ckpt | train | 96.04 | 93.39 | 85.51 | 26.96 |
@inproceedings{
jun2023enlarge
title={Enlarge Instance-specific and Class-specific Information for Open-set Action Recognition},
author={Jun Cen, Shiwei Zhang, Xiang Wang, Yixuan Pei, Zhiwu Qing, Yingya Zhang, Qifeng Chen},
booktitle={Conference on Computer Vision and Pattern Recognition (CVPR)},
year={2023},
}
In addition to the Alibaba-mmai-research codebase, this repo contains modified codes from:
- DEAR for implementation of the DEAR (ICCV-2021)
- pytorch-classification-uncertainty: for implementation of the EDL (NeurIPS-2018).
- ARPL: for implementation of baseline method RPL (ECCV-2020).
- OSDN: for implementation of baseline method OpenMax (CVPR-2016).
- bayes-by-backprop: for implementation of the baseline method Bayesian Neural Networks (BNNs).
- rebias: for implementation of HSIC regularizer used in ReBias (ICML-2020)
We sincerely thank the owners of all these great repos!