/SER30K

[ACM MM 2022 Oral] This is the official implementation of "SER30K: A Large-Scale Dataset for Sticker Emotion Recognition"

Primary LanguagePythonApache License 2.0Apache-2.0

SER30K: A Large-Scale Dataset for Sticker Emotion Recognition

PyTorch Conference License

This is the official repository of our ACM Multimedia 2022 Work. SER30K dataset and pytorch training/validation code for LOcal Re-Attention multimodal network (LORA).

drawing

Overview of LOcal Re-Attention multimodal network (LORA)

Abstract

With the popularity of instant messaging applications, online chatting plays an essential role in our daily life. The prevailing use of stickers to express emotions in online chatting leads to the necessity of multimodal sticker emotion recognition. Considering the lack of sticker emotion data, we collect a large-scale sticker emotion recognition dataset named SER30K. It consists of a total of 1,887 sticker themes with total 30,739 sticker images. Some commonly used images, such as realistic images and facial expression images, have been well studied in the field of emotion analysis. However, it is still challenging to understand the emotion of sticker images. Since the characteristics in stickers from the same theme are similar, we can only accurately predict the emotion by capturing the local information (e.g., expressions, poses) and understanding the global information (e.g., relations among objects). To tackle this challenge, we propose a LOcal Re-Attention multimodal network (LORA) to learn sticker emotions in an end-to-end manner. Different from previous approaches using convolutional neural networks, LORA employs the vision transformer to extract visual features, leading to better capture the global relations. In addition, we design a local re-attention module to focus on important region information. Then a simple but efficient modal fusion module combines visual and language features. Extensive experiments are performed on the SER30K and other emotion recognition datasets, demonstrating the effectiveness of our proposed method.

SER30K dataset

If you need the SER30K dataset for academic purposes, please download the application form and fill out the request information, then send it to nku_liusz#163.com ('#'->'@'). We will process your application as soon as possible.

Prerequisites

  • Python 3.6
  • Pytorch 1.10.2
  • Others (Pytorch-Bert, etc.) Check requirements.txt for reference.

In addition, please download the ImageNet pre-trained model weights for PVT-small from PVT and place it in the ./weight folder.

Data

SER30K dataset is used in the following folder structure:

│SER_Dataset/
├──Annotations/
│  ├── train.json
│  ├── val.json
│  ├── test.json
├──Images/
│  ├── 01-panda-bear
│  │   ├── sticker_1.jpg
│  │   ├── sticker_2.jpg
│  │   ├── ......
│  ├── ......

Model Zoo

LORA and LORA-V on SER30K dataset.

Model Accuracy Image size Url
LORA-V 69.22 448 Baidu drive[1nm3]
Google drive
LORA 70.73 448 Baidu drive[5bup]
Google drive

Training

To train LORA on SER30K on a single node with 2 gpus for 50 epochs run:

python -m torch.distributed.launch --nproc_per_node=2 --master_port=6666 \
--use_env main.py \
--config configs/pvt/pvt_small.py \
--visfinetune weights/pvt_small.pth \
--output_dir checkpoints/SER \
--dataset SER \
--data-path {path to SER30K dataset} \
--alpha 8 \
--batch-size 16 \
--locals 1 1 1 0

Evaluation

To evaluate LORA model performance on SER30K with a single GPU, run the following script using command line:

python -m torch.distributed.launch --nproc_per_node=1 --master_port=6666 \
--use_env main.py \
--config configs/pvt/pvt_small.py \
--resume checkpoints/SER/checkpoint.pth \
--dataset SER \
--data-path {path to SER30K dataset} \
--batch-size 16 \
--alpha 8 \
--locals 1 1 1 0 \
--eval

Evaluate LORA-V model performance on SER30K:

python -m torch.distributed.launch --nproc_per_node=1 --master_port=6666 \
--use_env main_V.py \
--config configs/pvt/pvt_small.py \
--resume checkpoints/SER/checkpoint_v.pth \
--dataset SER_V \
--data-path {path to SER30K dataset} \
--batch-size 16 \
--alpha 8 \
--locals 1 1 1 0 \
--eval

Citation

If you find this code to be useful for your research, please consider citing.

@inproceedings{liu2022ser30k,
  title={{SER30K}: A Large-Scale Dataset for Sticker Emotion Recognition},
  author={Liu, Shengzhe and Zhang, Xin and Yang, Jufeng},
  booktitle={Proceedings of the 30th ACM International Conference on Multimedia},
  pages={33--41},
  year={2022}
}

Acknowledgement

Thanks for the work of PVT. My code is based on the implementation of them.