亚洲免费av电影一区二区三区,日韩爱爱视频,51精品视频一区二区三区,91视频爱爱,日韩欧美在线播放视频,中文字幕少妇AV,亚洲电影中文字幕,久久久久亚洲av成人网址,久久综合视频网站,国产在线不卡免费播放

        ?

        基于PageRank算法社交網(wǎng)絡(luò)的改進(jìn)與研究c

        2014-11-19 17:22:45冷若冰袁航
        卷宗 2014年10期
        關(guān)鍵詞:社交算法研究

        冷若冰 袁航

        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 “l(fā)oose 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相關(guān)性的實(shí)證研究
        社交牛人癥該怎么治
        意林彩版(2022年2期)2022-05-03 10:25:08
        遼代千人邑研究述論
        社交距離
        視錯(cuò)覺在平面設(shè)計(jì)中的應(yīng)用與研究
        科技傳播(2019年22期)2020-01-14 03:06:54
        基于MapReduce的改進(jìn)Eclat算法
        Travellng thg World Full—time for Rree
        EMA伺服控制系統(tǒng)研究
        進(jìn)位加法的兩種算法
        狼人精品剧情av在线观看| 香蕉视频毛片| 欧美亚洲另类自拍偷在线拍| 青青草视频在线观看视频免费| 亚洲精品高清av在线播放| 男人天堂亚洲一区二区| 亚洲自偷自拍另类第1页| 无码吃奶揉捏奶头高潮视频| 一本大道香蕉视频在线观看| 人妻少妇喷水意淫诱惑| 日本乱码一区二区三区在线观看 | 老熟女的中文字幕欲望| 四虎国产精品永久在线国在线| 亚洲欧洲无码一区二区三区 | 中文字幕巨乱亚洲| 加勒比一区二区三区av| 亚洲gay片在线gv网站| 免费a级毛片无码无遮挡| 国产一区二区三区韩国| 亚洲av区一区二区三区| 精品卡一卡二乱码新区| 亚洲熟少妇在线播放999| 成年女人在线观看毛片| 久久成人永久婷婷99精品| 免费观看交性大片| 丝袜足控一区二区三区| 东京热加勒比日韩精品| 亚洲国产精品久久婷婷| 护士人妻hd中文字幕| 亚洲欧洲精品成人久久曰影片| 九九日本黄色精品视频| 亚洲一区二区三区偷拍厕所| 中文字幕乱码一区av久久不卡| 国产成人www免费人成看片| 亚洲欧美成人在线免费| 国产精品性色av麻豆| 久久精品无码av| 91久久久久无码精品露脸| 亚洲成在人网站天堂日本| 日本真人边吃奶边做爽动态图| 97精品国产手机|