当前位置:网站首页>Graph node classification and message passing
Graph node classification and message passing
2020-11-09 07:30:00 【osc_gnljjuu】
Message passing and node classification

This article mainly solves the problem :
Given a network , Some of these nodes have label, How to assign other nodes to corresponding nodes label Well ? ( There are many examples of this in life , For example, through interactive behavior to determine whether the user is a fleece party ) Intuitively, we will consider the connection between network nodes , The model to be learned in this article is collective classification:
There are three specific methods involved :
- Relational classification;
- Iterative classification;
- Belief propagation;
Relational classification
Correlations Exists In Network
The behavior of nodes in the network is corrlated, There are three kinds of :
- Homophily: Nodes with the same properties may have more network connections , If you have the same music hobby, it's easier to be in the same forum ;
- Influence: The characteristics of one node may be influenced by other nodes , If I recommend music albums that I am interested in to my friends , Some of my friends are likely to become as interested in these albums as I am ;
- Confounding: The environment can affect the characteristics of nodes and the connections between nodes ;
Classification with network data
Motivation
Similar nodes are usually connected to each other in the network , Or the connection is tight ; and ”Guilt-by-association“: Association inference is to consider this part of information to infer the type of nodes in the network ; Therefore, the network node type judgment mainly through the following three sources of characteristics :
- The characteristics of the node itself ;
- Nodes are connected to neighbors label;
- The characteristics of nodes' neighbors ;
Guilt-by-association
"Guilt-by-association" It's better to define , Here's the picture , Given Graph And a small amount of label The node of , How to label the remaining nodes as corresponding label, requirement : The network has homogeneity :

Mathematical modeling of the problem is carried out : Given the adjacency matrix W, The size is n*n, as well as Y Corresponding to node label,1 by positive node ,-1 position negative node , 0 position unlabeled node , forecast unlabeled In the node of postive Probability . Here's the Markov hypothesis : Node label type , Depending only on the connected nodes label type :
Collective classification It usually involves three steps :
- local classifier: Only the node feature information is considered for classification ;
- Relational Classifier: Consider the characteristics and category information of node neighbors ;
- collective inference: take Relational Classifier Apply to every node , Until the whole network ”inconsistency“ To minimize the ;
Probabilistic Relational Classifier
Probabilistic Relational Classifier The basic idea is simple , The probability of each node class is the weighted average of its neighboring nodes , The specific process is as follows :
- For tagged data , Label the class table of nodes as label;
- For data without labels , Initialize its class randomly ;
- Then the adjacent nodes are weighted in random order , Until the whole network converges or reaches the maximum number of iterations :
among It's a node i And nodes j The connection weight of .
There are two problems with this model :
- There is no guarantee that the model will converge ;
- The model does not use the feature information of nodes ;

Pictured above , For the initialized node , Press label Adjacent nodes are used to calculate the weight , Get the probability of node type , Until it converges : after 5 After the iteration :

Iterative Classifier
Iterative Classifier That is, the iterative process after adding node features , There are two main processes :
- Bootstrap Phase: The nodes i Express by its characteristics , Use local classifier To calculate the... Of each node label probability ;
- Iteration Phase: Repeat for each node in the network , Update node characteristics and press local classifier Classify the node , until label Stable ;
In the video tutorial , One example is the use of Iterative Classifier By considering network structure information fake review detection Of , I suggest that you can read the paper in detail : REV2_Fraudulent_User_Prediction_in_Rating_Platforms
Collective Classification
Belief Propagation It's a dynamic planning process , Through nodes passing message The means of , It is mainly used to solve the problem of conditional probability in graphs .
Message Passing
Take an example to explain message passing The process of :
Given the task : Count the number of nodes in the graph , Each node can only interact with its neighbors

Pictured above , Each node listens for information from its neighbors , And then update the information , And pass it forward , Here's the picture , Nodes marked with a red circle can only receive incoming messages:
- 2 nodes before you;
- 3 nodes behind you:

In a slightly more complex tree Type graph To show :

Loopy Belief Propagation
To make it clear , Here's a basic definition :
- Label-Label potential matrix
: Representation node i It's a category
Under the condition of , Its adjacent nodes j For the category
Probability ;
- prior belief
: Representation node i For the category
The prior probability of ;
: node i Predict its adjacent nodes j For state
:
It's easy to understand : The formula considers nodes i by The prior probability of ψ, According to the state transition matrix, the nodes are obtained j by
, At the same time, all the information transmitted by neighbor nodes is considered
, Random order iterations , Until the final state is stable , Get the node i For the category Y_{i}Yi Probability :
Consider nodes , Doing it message passing when , In fact, there is no way to judge whether there is cycle, therefore LBP In case of cycles It's just a matter of some questions , Here's the picture , There's a little bit of confusion here , If you have any understanding, please discuss in the comments section :

LBP The advantages and disadvantages are as follows :
- advantage :
- Implement a simple , It's easy to parallelize ;
- It's universal , Apply to all graph models ;
- Challenge :
- There is no guarantee of convergence , Especially with a lot of closed connections ;
- Potential function :
- It needs magic training ;
- Training learning is based on gradient optimization , There may be a bracelet problem during training ;
Summary
This article is based on cs224w Learning to organize , In this paper, we mainly introduce in node classification There are three classic ways to deal with it :Relational classification、Iterative Classifier、Collective Classification, Introduces the classic solution , Such as Probabilistic Relational Classifier、Message Passing, There are several cases in the article , Because the time is not sorted out , Learn the tutorial in this chapter , And related paper, node classification It's classic graph The problem of , It's used in many anti fraud cases .
版权声明
本文为[osc_gnljjuu]所创,转载请带上原文链接,感谢
边栏推荐
- 非阻塞的无界线程安全队列 —— ConcurrentLinkedQueue
- Core knowledge of C + + 11-17 template (2) -- class template
- How does semaphore, a thread synchronization tool that uses an up counter, look like?
- Copy on write collection -- copyonwritearraylist
- CSP-S 2020 游记
- Factory Pattern模式(简单工厂、工厂方法、抽象工厂模式)
- B. protocal has 7000eth assets in one week!
- 5 个我不可或缺的开源工具
- Travel notes of csp-s 2020
- 作业2020.11.7-8
猜你喜欢
基于链表的有界阻塞队列 —— LinkedBlockingQueue
How does semaphore, a thread synchronization tool that uses an up counter, look like?
On buffer overflow
The difference between GDI and OpenGL
小议缓冲区溢出
Introduction to nmon
VIM Introduction Manual, (vs Code)
深度优先搜索和广度优先搜索
23 pictures, take you to the recommended system
For the first time open CSDN, this article is for the past self and what is happening to you
随机推荐
3.你知道计算机是如何启动的吗?
Platform in architecture
六家公司CTO讲述曾经历的“宕机噩梦”
老大问我:“建表为啥还设置个自增 id ?用流水号当主键不正好么?”
上线1周,B.Protocal已有7000ETH资产!
架构中台图
非阻塞的无界线程安全队列 —— ConcurrentLinkedQueue
Oschina plays disorderly on Monday
Linked blocking queue based on linked list
C + + adjacency matrix
OSChina 周一乱弹 —— 程序媛的青春
OpenGL ES 框架详细解析(八) —— OpenGL ES 设计指南
对象
深度优先搜索和广度优先搜索
Travel notes of csp-s 2020
File queue in Bifrost (1)
Windows环境下如何进行线程Dump分析
leetcode之反转字符串中的元音字母
Combine theory with practice to understand CORS thoroughly
When we talk about data quality, what are we talking about?