Text classification optimization algorithm based on graph neural network

Erdi Gao,Haowei Yang,Dan Sun,Haohao Xia,Yuhan Ma,Yuanjing Zhu
2024-08-10
Abstract:In the field of natural language processing, text classification, as a basic task, has important research value and application prospects. Traditional text classification methods usually rely on feature representations such as the bag of words model or TF-IDF, which overlook the semantic connections between words and make it challenging to grasp the deep structural details of the text. Recently, GNNs have proven to be a valuable asset for text classification tasks, thanks to their capability to handle non-Euclidean data efficiently. However, the existing text classification methods based on GNN still face challenges such as complex graph structure construction and high cost of model training. This paper introduces a text classification optimization algorithm utilizing graph neural networks. By introducing adaptive graph construction strategy and efficient graph convolution operation, the accuracy and efficiency of text classification are effectively improved. The experimental results demonstrate that the proposed method surpasses traditional approaches and existing GNN models across multiple public datasets, highlighting its superior performance and feasibility for text classification tasks.
Computation and Language,Artificial Intelligence
What problem does this paper attempt to address?
The paper attempts to address the issue in the field of natural language processing where traditional text classification methods (such as the bag-of-words model or TF-IDF) fail to capture the deep structural features of the text due to ignoring the semantic relationships between words, leading to poor classification performance. Although convolutional neural networks (CNN) and recurrent neural networks (RNN) have made some progress in text classification tasks, they still have limitations in handling long-distance dependencies and non-Euclidean data. To solve these problems, the paper proposes a text classification optimization algorithm based on graph neural networks (GNN). This algorithm aims to improve the accuracy and efficiency of text classification by introducing an adaptive graph construction strategy and efficient graph convolution operations. Specifically: 1. **Adaptive Graph Construction Strategy**: Dynamically adjusts the relationships between nodes and edges based on the text content to construct a more accurate text graph structure. 2. **Efficient Graph Convolution Operations**: Enhances the information transmission and aggregation process while reducing computational overhead. With these improvements, the experimental results of the proposed algorithm on multiple public datasets show that its performance surpasses traditional methods and existing GNN models, demonstrating its superiority and feasibility in practical text classification tasks.