# tea-action-recognition **Repository Path**: effort-max/tea-action-recognition ## Basic Information - **Project Name**: tea-action-recognition - **Description**: The PyTorch code of the TEA Module - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-09-24 - **Last Updated**: 2023-09-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # TEA: Temporal Excitation and Aggregation for Action Recognition (CVPR2020) The PyTorch code of the [TEA Module](https://arxiv.org/abs/2004.01398). ### Requirements - [PyTorch](https://pytorch.org/) >= 1.1.0 ### Data Preparation Please refer to [TSN](https://github.com/yjxiong/temporal-segment-networks) repo and [TSM](https://github.com/mit-han-lab/temporal-shift-module) repo for the detailed guide of data pre-processing. #### The List Files A list file is utilized to specify the video data information, including a tuple of extracted video frame folder path (absolute path), video frame number, and video label. A typical line in the file look like: ``` /data/xxx/xxx/something-something/video_frame_folder 100 12 ``` Finally, the absolute path of your own generated list files should be added into `ops/dataset_configs.py` ### Training TEA We have provided several examples for training TEA models on different datasets. Please refer to the Appendix B of [our paper](https://arxiv.org/abs/2004.01398) for more training details. - To train TEA on Something-Something V1 dataset with 8 frames: ``` bash ./scripts/train_tea_something_rgb_8f.sh ``` - To train TEA on HMDB dataset with 16 frames from the Kinetics-400 pre-trained models: ``` bash ./scripts/finetune_tea_hmdb_rgb_16f.sh ``` ### Testing Two inference protocols are utilized in our paper: 1) efficient protocol and 2) accuracy protocol. For both protocols we provide the example scripts for testing TEA models: - Efficient Protocol ``` bash ./scripts/single_test_tea_something_rgb_8f.sh ``` - Accuracy Protocol ``` bash ./scripts/multi_test_tea_something_rgb_8f.sh ``` ### Pre-trained Models Currently, we do not provide the original pre-trained models on STHV1, STHV2, and Kinetics, since we have reorganized the structure of the codes and renamed the modules of TEA for public release. The old models cannot be loaded with new names. We plan to retrain the models with the new codes and release the models for evaluation. The released codes are verified, and you will get a similar performance with our paper if you have followed the exact training settings of TEA ([issue 2](https://github.com/Phoenix1327/tea-action-recognition/issues/2) and [issue 4](https://github.com/Phoenix1327/tea-action-recognition/issues/4)).