当前位置:网站首页>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]所创,转载请带上原文链接,感谢
边栏推荐
- A solution to the problem that color picker (palette) cannot use shortcut keys in sublime Text3 plug-in
- 2. Introduction to computer hardware
- Installation record of SAP s / 4hana 2020
- 几行代码轻松实现跨系统传递 traceId,再也不用担心对不上日志了!
- Android emulator error: x86 emulation currently requires hardware acceleration solution
- leetcode之反转字符串中的元音字母
- Copy on write collection -- copyonwritearraylist
- LeetCode-15:三数之和
- Depth first search and breadth first search
- Talk about my understanding of FAAS with Alibaba cloud FC
猜你喜欢

20201108 programming exercise exercise 3

服务器性能监控神器nmon使用介绍

STC转STM32第一次开发

How to reduce the resource consumption of istio agent through sidecar custom resource

使用递增计数器的线程同步工具 —— 信号量,它的原理是什么样子的?

FC 游戏机的工作原理是怎样的?

Sublime text3 插件ColorPicker(调色板)不能使用快捷键的解决方法

LeetCode-11:盛水最多的容器

How does semaphore, a thread synchronization tool that uses an up counter, look like?

分库分表的几种常见玩法及如何解决跨库查询等问题
随机推荐
图节点分类与消息传递 - 知乎
Factory Pattern模式(简单工厂、工厂方法、抽象工厂模式)
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!
How to get started with rabbitmq
使用递增计数器的线程同步工具 —— 信号量,它的原理是什么样子的?
Depth first search and breadth first search
CSP-S 2020 游记
华为HCIA笔记
失业日志 11月5日
Introduction to nmon
Get the first cover image of video through canvas
Introduction to nmon
Bifrost 之 文件队列(一)
平台商业化能力的另一种表现形式SAAS
你有没有想过为什么交易和退款要拆开不同的表
Service grid is still difficult - CNCF
为什么我们不使用GraphQL? - Wundergraph
Investigation of solutions to rabbitmq cleft brain problem
How does semaphore, a thread synchronization tool that uses an up counter, look like?
一堆代码忘了缩进?快捷方式教你无忧无虑!