TextGCN Graph Convolutional Networks for Text Classification

https://arxiv.org/abs/1809.05679

1.build a single text graph for a corpus based on word co-occurrence and document word relations,

2.then learn a Text Graph Convolutional Network (Text GCN) for the corpus. Our Text GCN is initialized with one-hot representation for word and document, it then jointly learns the embeddings for both words and documents, as supervised by the known class labels for documents.

BertGCN Transductive Text Classification by Combining GCN and BERT

origin paper: https://arxiv.org/abs/2105.05727

ori code git: https://github.com/ZeroRin/BertGCN

官方知乎: https://zhuanlan.zhihu.com/p/378798855

TextGCN: https://arxiv.org/abs/1809.05679

图结构

we construct a heterogeneous graph containing both word nodes and document nodes following TextGCN. 如下图

node :word nodes and document nodes

edge : We build edges among nodes based on word occurrence in documents (document-word edges) and word co-occurrence in the whole corpus (word-word edges)

edge weight

也和TextGCN一样

node data

不同

重点是解决了TextGCN和BERT一起联调的收敛问题

 GNN GCN
  

ConvGNNs

ConvGNNs fall into two categories, spectral-based and spatial-based. Spectral based approaches define graph convolutions by introducing filters from the perspective of graph signal processing [82] where the graph convolutional operation is interpreted as removing noises from graph signals. Spatial-based approaches inherit ideas from RecGNNs to define graph convolutions by information propagation. spatial-based methods have developed rapidly recently due to its attractive efficiency, flexibility, and generality.

谱域图卷积是空域图卷积的特例

https://zhuanlan.zhihu.com/p/139682302

https://zhuanlan.zhihu.com/p/122968925

https://blog.csdn.net/weixin_45901519/article/details/106388964

https://blog.csdn.net/weixin_45901519/article/details/106436591

https://blog.csdn.net/weixin_45901519/article/details/106492963

 GNN GCN
  
 GCN


:D 一言句子获取中...