999精品在线视频,手机成人午夜在线视频,久久不卡国产精品无码,中日无码在线观看,成人av手机在线观看,日韩精品亚洲一区中文字幕,亚洲av无码人妻,四虎国产在线观看 ?

基于PageRank算法社交網絡的改進與研究c

2014-11-19 17:22:45冷若冰袁航
卷宗 2014年10期
關鍵詞:研究

冷若冰 袁航

In the final design of Page Rank, Bin and Page rule that the websites transmit the “importance measure” by using link. The “importance measure” of each website is equal to the sum of the “importance measure” that other websites transmit to it. So, the measure flows throughout the whole network. From the point of view of in-link, if a website gets a high measure, there may be two reasons. The first reason is that many websites give measure to it and the second is that few websites give measure to it but each of them gives lots of measure. From the point of view of out-link, now that the measure of a website is decided, the more out-links, the fewer measure each out-link can get.

Then we will show that how the “importance measure” is transmitted among websites. The top left corner website gets 100 measure. It transmits 50 measure to both the top right corner website and bottom right corner website through 2 out-links. The bottom left corner website only gets 9 measure. It transmits all its 9 measure to 3 websites and each of them gets 3 measure. Only one out-link transmits its measure to the top right corner website. The other two objects are not in the figure. So the top right corner finally gets 53 measure and the bottom right corner gets 50 measure. Since both of them have two out-links, the measure that each out-link transmits of the top right corner website is more than that of the bottom right corner.In-link of the website i: hyperlink directing to website i from other websites.Out-link of the website i: hyperlink directing to other websites from website i.

Define a directed network G=(V,E), V representsthe set of node, in other words, the set of all websites, E represents the set of directed edges in the network, which means hyperlinks. n equals to the number of websites in the network. So the PageRank value(represent as p(i)) of the website i can be define as :

P(i)=Oj means the number of the website js outer

link. In mathematics, we can get n linear equations with n unknown variables. A matrix can be used to represent all the equations. Use a n dimensional column vector P to represent all the PageRank values.

A equals to the adjacency matrix of the graph

The expression can be written as:

It can be seen that P is eigenvector that the eigenvalue of the matrix (1) corresponded to.

Solving this equation needs to satisfy some conditions. The matrix A must be a random matrix, which means it is irreducible(the directed graph that matrix A corresponding to is strong connected and nonperiodic. But a real network(or social network)doesnt satisfy those conditions. In fact, the equations above can be inferred through Markov-Chains.AT needs some modifications to satisfy the conditions above. To makeirreducible,which means every node has outlinks, a concept (denoted as d) named damping factor is defined, multiply AT by d and add, e is an all 1 n-dimensional vector, which means, the probability of any oneof websites linking to other websites is at least (1-d), and a strong connected graph is formed.

A modified PageRank model can be deduced:

If some personalized settings for the initial matrix are needed, we can add a value to every element in the adjacent matrix and convert to (named ‘personalization vector).The matrix G can be deuced:

The matrix G is also called ‘Google Matrix, the formula above can be expressed as:

Thehere is the same as the p above, only through a transposition. equals to the vector of the PageRank value, . Define as the unit matrixs column vector of column i, the PageRank value of the node i are equals to:

Since different personalization vector can be set and apparently for different vector V ,different can be deduced, so we use =(v) to represent it. In the simplest situation, assume v=e/n.

2 Definition of Community Tree

After getting Community Tree from the social network, the social networks community and its organization structure can be deduced. The graph 2.6 is an example. Node 1 and node 5 are the cores of community 1 and community 2 respectively and the immediate leader of node 1 and node 2.

PageRank algorithm calculate a global value for every website through analyzing the links between websites. Which means the significance.Every members significance in the social network can be evaluated by PageRank, calculating m-Score value for every node. In a network, random walks implements the soft cluster of the nodes implicitly. Thus, random walks can be used for every member in finding its immediate leader. A Community Tree can be formed by connecting random walks and m-Score value of every node.

3 . Detailed design

First of all, we get a one-step probability transition matrix of the social network G. T is the jump frequency of Random Walks. After the standardization, we will get the t-step probability transition matrix M. Then, we call calc_m-Score(G) to calculate the m-Score value of each node. For each node i, we will find the most possible node j that node i will jump to after t steps by using the t-step probability transition matrix M. If the PageRank value of node j is large than that of node i, we consider node i the father node of node j.

Pseudo-code that calculates the improved CT Tree

Algorithm: revised_CT_Deriving

Input: Social Network G, Jump frequency t

Output: The improved CT Tree

Procedures:

1. CT ←[null,…,null]

2. A ←getOneStepTransMatrix(G)

3. Z ← diagonal matrix satisfied Zjj = ∑i[At]IJ

4. Mt ← At.Z-1

5. R ←calc_m– Score(G)

6. For each Pi in R

7.list ← Mt[i]

8. list.sort(reverse = True)

9. for k in len(list)

10. If R[k] > R[i]

11. CT[i]←k

12. k ←k-1

13. End

14. Return CT

In the improved CT_Deriving, when selecting the father node of node i, we will not choose the node with the largest t-step transition probability. Firstly, we sort the t-step transition probability of all nodes and check every PageRank value of node k until we find a node k whose PageRank value is bigger than that of node i. Then we will set node ks PageRank value as node is PageRank value.

4.result

In the graph 3.10. the blue broken line represents the trend of PageRank value which is without offset, the red broken line represents the trend of PageRank value which is offset, the green broken line represents the trend of PageRank value when p_2 has been offset, it can be clearly seen that the PageRank value of node{5,6,7,11,7} is increasing by the level of offset, other nodes, otherwise, shows different level of decrease.

We can see that after offset, node{5,6,7,11} accesses in Candidate Set, also their action scope can be clearly seen. Node 17 didnt access in the Candidate Set, after offset, its action scope changed from 3 nodes(13,18,22) to 4 nodes(12,13,18,22), but node1 remains in the Candidate Set, it can be seen that though it is not preponderate in ‘interested, its ‘influence cant be ignored since it has lots of ‘friends.

3.10

In the model, we made some improvements on the creation method of the CT Tree. After some tests, we can reflect individual vector of user behavior by custom made. It finally affect the PageRank value of the user. In this case, the PageRank value consists of the information about network linking itself and user behavior. Combined with the improved Random Walks Algorithm, we can confirm the “loose relationship” among users. This relationship reflects that nodes may affect each other with a certain probability. We present the users dependency by using a CT Tree within a figure and select a certain number of decision nodes in the CT Tree. The information publisher can affect other nodes by reference nodes.

猜你喜歡
研究
FMS與YBT相關性的實證研究
2020年國內翻譯研究述評
遼代千人邑研究述論
視錯覺在平面設計中的應用與研究
科技傳播(2019年22期)2020-01-14 03:06:54
關于遼朝“一國兩制”研究的回顧與思考
EMA伺服控制系統研究
基于聲、光、磁、觸摸多功能控制的研究
電子制作(2018年11期)2018-08-04 03:26:04
新版C-NCAP側面碰撞假人損傷研究
關于反傾銷會計研究的思考
焊接膜層脫落的攻關研究
電子制作(2017年23期)2017-02-02 07:17:19
主站蜘蛛池模板: 国产jizz| 国产乱子伦视频三区| 国产成人综合亚洲网址| 欧美日韩国产成人高清视频| 国产在线无码一区二区三区| 久久精品日日躁夜夜躁欧美| 她的性爱视频| 手机在线看片不卡中文字幕| 精品91视频| 亚洲大尺度在线| 久久亚洲精少妇毛片午夜无码| 国产福利在线免费观看| 亚洲第一天堂无码专区| 成人综合在线观看| 无遮挡国产高潮视频免费观看| 国产9191精品免费观看| 亚洲国产精品久久久久秋霞影院| 欧美无遮挡国产欧美另类| 激情午夜婷婷| 999国内精品久久免费视频| 伊人久久久大香线蕉综合直播| 欧美成一级| 人妻丰满熟妇AV无码区| 亚洲男人的天堂在线观看| 日韩中文字幕亚洲无线码| 亚洲第一在线播放| 欧美激情视频二区| 久久久亚洲国产美女国产盗摄| 亚洲人成网站观看在线观看| 日韩a级片视频| 亚洲成人精品在线| 色噜噜狠狠色综合网图区| 全部免费特黄特色大片视频| 伊人久久婷婷五月综合97色| 啪啪啪亚洲无码| 国产精品女同一区三区五区| 天堂网国产| 国产内射一区亚洲| 天堂在线亚洲| 亚洲国产无码有码| 99人体免费视频| 日本午夜三级| 国产精品伦视频观看免费| 久久毛片网| 国产麻豆另类AV| 91精品国产91久无码网站| 国产美女精品一区二区| 草草线在成年免费视频2| 2022国产无码在线| 亚洲成人高清在线观看| 日韩在线第三页| 国内精自视频品线一二区| 欧美日韩午夜| 欧美精品亚洲精品日韩专区va| AV熟女乱| 亚洲精品国产成人7777| 国产精品香蕉在线| 日韩欧美中文在线| 日韩二区三区| 亚洲国产日韩在线成人蜜芽| 国产精品一区在线观看你懂的| 久久精品娱乐亚洲领先| 九色视频线上播放| 亚洲毛片在线看| 天天综合网在线| 亚洲人成网站观看在线观看| 99精品久久精品| 一本一道波多野结衣一区二区| 欧美中文字幕在线播放| 久久精品人人做人人爽| 热这里只有精品国产热门精品| 色网站在线免费观看| 欧美精品亚洲二区| 亚洲欧美综合在线观看| 特级毛片8级毛片免费观看| 欲色天天综合网| av手机版在线播放| 成年人免费国产视频| 亚洲伊人电影| 国产成人一二三| 成年人免费国产视频| 日韩亚洲高清一区二区|