当前位置:网站首页>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]所创,转载请带上原文链接,感谢
边栏推荐
- Factory Pattern模式(简单工厂、工厂方法、抽象工厂模式)
- Linked blocking queue based on linked list
- APP 莫名崩溃,开始以为是 Header 中 name 大小写的锅,最后发现原来是容器的错!
- API部分的知识点复习
- centos7下安装iperf时出现 make: *** No targets specified and no makefile found. Stop.的解决方案
- EasyNTS上云网关设备在雪亮工程项目中的实战应用
- 理论与实践相结合彻底理解CORS
- Depth first search and breadth first search
- 你有没有想过为什么交易和退款要拆开不同的表
- 基于LabVIEW实现的几种滚动字幕
猜你喜欢
2. Introduction to computer hardware
APP 莫名崩溃,开始以为是 Header 中 name 大小写的锅,最后发现原来是容器的错!
非阻塞的无界线程安全队列 —— ConcurrentLinkedQueue
leetcode之反转字符串中的元音字母
Investigation of solutions to rabbitmq cleft brain problem
B. protocal has 7000eth assets in one week!
salesforce零基础学习(九十八)Salesforce Connect & External Object
Android 解决setRequestedOrientation之后手机屏幕的旋转不触发onConfigurationChanged方法
Salesforce connect & external object
Android emulator error: x86 emulation currently requires hardware acceleration solution
随机推荐
App crashed inexplicably. At first, it thought it was the case of the name in the header. Finally, it was found that it was the fault of the container!
App crashed inexplicably. At first, it thought it was the case of the name in the header. Finally, it was found that it was the fault of the container!
Five design patterns frequently used in development
Do you know how the computer starts?
RabbitMQ脑裂问题解决方案调查
架构中台图
When iperf is installed under centos7, the solution of make: * no targets specified and no makefile found. Stop
上线1周,B.Protocal已有7000ETH资产!
APP 莫名崩溃,开始以为是 Header 中 name 大小写的锅,最后发现原来是容器的错!
A bunch of code forgot to indent? Shortcut teach you carefree!
写时复制集合 —— CopyOnWriteArrayList
2 普通模式
2.计算机硬件简介
The vowels in the inverted string of leetcode
14. Introduction to kubenetes
How does semaphore, a thread synchronization tool that uses an up counter, look like?
Installation record of SAP s / 4hana 2020
Service grid is still difficult - CNCF
This program cannot be started because msvcp120.dll is missing from your computer. Try to install the program to fix the problem
Detailed analysis of OpenGL es framework (8) -- OpenGL es Design Guide