Attentions: This is about Graph, Network, NOT Image, Picture, Computer Vision, etc.
-
Learning Representations of Graph Data -- A Survey - UCL2019
综述:总结和探讨图数据表征学习方法的最新进展。
-
https://github.com/thunlp/GNNPapers
Must-read papers on GNN
-
https://github.com/deepgraphlearning/literaturedl4graph
Paper list about deep learning for graphs 涉及:Node Representation, KG Embedding, GNN, Application, Graph Generation.
-
https://github.com/benedekrozemberczki/awesome-graph-classification
A collection of important graph embedding, classification and representation learning papers with implementations.
-
https://github.com/talorwu/Graph-Neural-Network-Review
GNN综述
Node2Vec belongs to Graph Embedding. Detailed info about Graph Embedding is at <>.
node2vec: Scalable Feature Learning for Networks - Stanford2016
node2vec is an algorithmic framework for learning continuous feature representations for nodes in networks. In node2vec, we learn a mapping of nodes to a low-dimensional space of features that maximizes the likelihood of preserving network neighborhoods of nodes.
node2vec主要用于处理网络结构中的多分类和链路预测任务,具体来说是对网络中的节点和边的特征向量表示方法。简单点来说就是将原有社交网络中的图结构,表达成特征向量矩阵,每一个node(人、物或内容等)表示成一个特征向量,用向量与向量之间的矩阵运算来得到相互的关系。
- https://github.com/tkipf/gcn (Tensorflow)