paper-with-me

Papers

SECNN: Squeeze-and-Excitation Convolutional Neural Network for Sentence Classification

2023-12-11 · Shandong Yuan

Sentence classification is one of the basic tasks of natural language processing. Convolution neural network (CNN) has the ability to extract n-grams features through convolutional filters and capture local correlations between consecutive words in parallel, so CNN is a popular neural network architecture to dealing with the task. But restricted by the width of convolutional filters, it is difficult for CNN to capture long term contextual dependencies. Attention is a mechanism that considers global information and pays more attention to keywords in sentences, thus attention mechanism is cooperated with CNN network to improve performance in sentence classification task. In our work, we don't focus on keyword in a sentence, but on which CNN's output feature map is more important. We propose a Squeeze-and-Excitation Convolutional neural Network (SECNN) for sentence classification. SECNN takes the feature maps from multiple CNN as different channels of sentence representation, and then, we can utilize channel attention mechanism, that is SE attention mechanism, to enable the model to learn the attention weights of different channel features. The results show that our model achieves advanced performance in the sentence classification task.

📄 PDF Abstract BibTeX arXiv:2312.06088

Code (0)

등록된 구현이 없습니다.

Tasks

ClassificationSentenceSentence Classification

Methods 이 논문이 사용한 방법론

Focus 설명 없음
Convolution A convolution is a type of matrix operation, consisting of a kernel, a small matrix of weights, that slides over input data performing element-wise multiplication with the…

Similar Papers 제목 키워드 기반

Squeeze aggregated excitation network

2023-08-25 · Mahendran N

Convolutional neural networks have spatial representations which read patterns in the vision tasks. Squeeze and excitation links the channel wise representations by explicitly modeling on channel level. Multi layer perce…

Squeeze-and-Excitation on Spatial and Temporal Deep Feature Space for Action Recognition

2018-06-02 · Gaoyun An, Wen Zhou, Yuxuan Wu, Zhenxing Zheng 외

Spatial and temporal features are two key and complementary information for human action recognition. In order to make full use of the intra-frame spatial characteristics and inter-frame temporal relationships, we propos…

Action RecognitionTemporal Action Localization

SENetV2: Aggregated dense layer for channelwise and global representations

2023-11-17 · Mahendran Narayanan

Convolutional Neural Networks (CNNs) have revolutionized image classification by extracting spatial features and enabling state-of-the-art accuracy in vision-based tasks. The squeeze and excitation network proposed modul…

Classificationimage-classificationImage Classification

Concurrent Spatial and Channel Squeeze & Excitation in Fully Convolutional Networks

2018-03-07 · Abhijit Guha Roy, Nassir Navab, Christian Wachinger

Fully convolutional neural networks (F-CNNs) have set the state-of-the-art in image segmentation for a plethora of applications. Architectural innovations within F-CNNs have mainly focused on improving spatial encoding o…

Brain Segmentationimage-classificationImage ClassificationImage Segmentation+3

Variations of Squeeze and Excitation networks

2023-04-11 · Mahendran NV

Convolutional neural networks learns spatial features and are heavily interlinked within kernels. The SE module have broken the traditional route of neural networks passing the entire result to next layer. Instead SE onl…