Leveraging Deep Neural Networks for Aspect-Based Sentiment Classification
Chen Li, Debo Cheng, Yasuhiko Morimoto
TL;DR
The paper tackles aspect-based sentiment analysis by addressing the information loss that can occur when using standard GCNs for syntactic features. It introduces EEGCN, a model that fuses Bi-LSTM, a Transformer encoder, and an edge-enhanced Bi-GCN built on a dependency tree, complemented by aspect-specific masking to focus on relevant signals. Across four benchmark datasets, EEGCN consistently outperforms baselines and shows that edge-aware graph propagation and global context integration significantly improve ABSA accuracy and F1 scores. The work highlights the value of incorporating syntactic edges with meaningful weights and bidirectional message passing, while outlining avenues for future improvements in trainable edge representations and global-information fusion.
Abstract
Aspect-based sentiment analysis seeks to determine sentiment with a high level of detail. While graph convolutional networks (GCNs) are commonly used for extracting sentiment features, their straightforward use in syntactic feature extraction can lead to a loss of crucial information. This paper presents a novel edge-enhanced GCN, called EEGCN, which improves performance by preserving feature integrity as it processes syntactic graphs. We incorporate a bidirectional long short-term memory (Bi-LSTM) network alongside a self-attention-based transformer for effective text encoding, ensuring the retention of long-range dependencies. A bidirectional GCN (Bi-GCN) with message passing then captures the relationships between entities, while an aspect-specific masking technique removes extraneous information. Extensive evaluations and ablation studies on four benchmark datasets show that EEGCN significantly enhances aspect-based sentiment analysis, overcoming issues with syntactic feature extraction and advancing the field's methodologies.
