http cs224w stanford edu measurements models algorithms
play

http://cs224w.stanford.edu Measurements Models Algorithms Small - PowerPoint PPT Presentation

CS224W: Analysis of Networks Jure Leskovec, Stanford University http://cs224w.stanford.edu Measurements Models Algorithms Small diameter, Erds-Renyi model, Decentralized search Edge clustering Small-world model Patterns of signed


  1. CS224W: Analysis of Networks Jure Leskovec, Stanford University http://cs224w.stanford.edu

  2. Measurements Models Algorithms Small diameter, Erdös-Renyi model, Decentralized search Edge clustering Small-world model Patterns of signed Structural balance, Models for predicting edge creation Theory of status edge signs Viral Marketing, Blogosphere, Independent cascade model, Influence maximization, Memetracking Game theoretic model Outbreak detection, LIM Preferential attachment, PageRank, Hubs and Scale-Free Copying model authorities Densification power law, Microscopic model of Link prediction, Shrinking diameters evolving networks Supervised random walks Strength of weak ties, Community detection: Kronecker Graphs Core-periphery Girvan-Newman, Modularity 9/27/17 Jure Leskovec, Stanford CS224W: Analysis of Networks, http://cs224w.stanford.edu 2

  3. ¡ Today we will talk about observations and models for the Web graph: § 1) We will take a real system: the Web § 2) We will represent it as a directed graph v § 3) We will use the language of graph theory § Strongly Connected Components § 4) We will design a computational Out(v) experiment: § Find In- and Out-components of a given node v § 5) We will learn something about the structure of the Web: BOWTIE! 9/27/17 Jure Leskovec, Stanford CS224W: Analysis of Networks, http://cs224w.stanford.edu 4

  4. Q: What does the Web “look like” at a global level? ¡ Web as a graph: § Nodes = web pages § Edges = hyperlinks § Side issue: What is a node? § Dynamic pages created on the fly § “dark matter” – inaccessible database generated pages 9/27/17 Jure Leskovec, Stanford CS224W: Analysis of Networks, http://cs224w.stanford.edu 5

  5. I teach a class on CS224W: Networks. Classes are in the Gates Computer building Science Department at Stanford Stanford University 9/27/17 Jure Leskovec, Stanford CS224W: Analysis of Networks, http://cs224w.stanford.edu 6

  6. I teach a class on CS224W: Networks. Classes are in the Gates Computer building Science Department at Stanford Stanford University ¡ In early days of the Web links were navigational ¡ Today many links are transactional (used not to navigate from page to page, but to post, comment, like, buy, …) 9/27/17 Jure Leskovec, Stanford CS224W: Analysis of Networks, http://cs224w.stanford.edu 7

  7. 9/27/17 Jure Leskovec, Stanford CS224W: Analysis of Networks, http://cs224w.stanford.edu 8

  8. Citations References in an Encyclopedia 9/27/17 Jure Leskovec, Stanford CS224W: Analysis of Networks, http://cs224w.stanford.edu 9

  9. ¡ Broder et al.: Altavista web crawl (Oct ’99) § Web crawl is based on a large set of starting points accumulated over time from various sources, including voluntary submissions. § 203 million URLS and 1.5 billion links § Computer: Server with 12GB of memory Tomkins, Broder, and Kumar 9/27/17 Jure Leskovec, Stanford CS224W: Social and Information Network Analysis 10

  10. ¡ How is the Web linked? ¡ What is the “map” of the Web? Web as a directed graph [Broder et al. 2000]: § Given node v , what can v reach? § What other nodes can reach v ? E F B A D G C For example: In(v) = {w | w can reach v} In(A) = {A,B,C,E,G} Out(v) = {w | v can reach w} Out(A)={A,B,C,D,F} 9/27/17 Jure Leskovec, Stanford CS224W: Analysis of Networks, http://cs224w.stanford.edu 11

  11. ¡ Two types of directed graphs: E § Strongly connected: B A § Any node can reach any node via a directed path D C In(A)=Out(A)={A,B,C,D,E} § Directed Acyclic Graph (DAG): E B § Has no cycles: if u can reach v , A then v cannot reach u D C ¡ Any directed graph (the Web) can be expressed in terms of these two types! § Is the Web a big strongly connected graph or a DAG? 9/27/17 Jure Leskovec, Stanford CS224W: Analysis of Networks, http://cs224w.stanford.edu 12

  12. ¡ A Strongly Connected Component (SCC) is a set of nodes S so that: § Every pair of nodes in S can reach each other § There is no larger set containing S with this property E F B A Strongly connected components of the graph: {A,B,C,G}, {D}, {E}, {F} D G C 9/27/17 Jure Leskovec, Stanford CS224W: Analysis of Networks, http://cs224w.stanford.edu 13

  13. ¡ Fact: Every directed graph is a DAG on its SCCs § (1) SCCs partitions the nodes of G § That is, each node is in exactly one SCC § (2) If we build a graph G’ whose nodes are SCCs, and with an edge between nodes of G’ if there is an edge between corresponding SCCs in G , then G’ is a DAG (1) Strongly connected components of E graph G: {A,B,C,G}, {D}, {E}, {F} F (2) G’ is a DAG: B {E} A {F} D G C {A,B,C,G} G G’ {D} 9/27/17 Jure Leskovec, Stanford CS224W: Analysis of Networks, http://cs224w.stanford.edu 14

  14. ¡ Claim: SCCs partition nodes of G. § This means: Each node is member of exactly 1 SCC ¡ Proof by contradiction: § Suppose there exists a node v which is a member of two SCCs S and S’ v S’ S § But then S È S’ is one large SCC! § Contradiction: By definition SCC is a maximal set with the SCC property, so S and S’ were not two SCCs. 9/27/17 Jure Leskovec, Stanford CS224W: Analysis of Networks, http://cs224w.stanford.edu 15

  15. ¡ Claim: G’ (graph of SCCs) is a DAG. § This means: G’ has no cycles ¡ Proof by contradiction: {E} § Assume G’ is not a DAG {F} § Then G’ has a directed cycle {A,B,C,G} G’ § Now all nodes on the cycle are {D} mutually reachable, and all are part of the same SCC G’ {E} § But then G’ is not a graph of {F} connections between SCCs {A,B,C,G} (SCCs are defined as maximal sets) {D} § Contradiction! Now {A,B,C,G,E,F} is a SCC! 9/27/17 Jure Leskovec, Stanford CS224W: Analysis of Networks, http://cs224w.stanford.edu 16

  16. How is the Web linked? Goal: Take a large snapshot of the Web and try to understand how its SCCs “fit together” as a DAG 9/27/17 Jure Leskovec, Stanford CS224W: Analysis of Networks, http://cs224w.stanford.edu 17

  17. ¡ Computational issue: v § Want to find a SCC containing node v ? ¡ Observation: Out(v) § Out(v) … nodes that can be reached from v § SCC containing v is: Out(v) ∩ In(v) = Out(v,G) ∩ Out(v,G’), where G’ is G with all edge directions flipped In(A) A 9/27/17 Jure Leskovec, Stanford CS224W: Analysis of Networks, http://cs224w.stanford.edu 18

  18. ¡ Example: F H E B G A Out(A) In(A) D C § Out(A) = {A, B, D, E, F, G, H} § In(A) = {A, B, C, D, E} § So, SCC(A) = Out(A) ∩ In(A) = {A, B, D, E} 9/27/17 Jure Leskovec, Stanford CS224W: Analysis of Networks, http://cs224w.stanford.edu 19

  19. ¡ There is a single giant SCC § That is, there won’t be two SCCs ¡ Why only 1 big SCC? Heuristic argument: § Assume two equally big SCCs. § It just takes 1 page from one SCC to link to the other SCC. § If the two SCCs have millions of pages the likelihood of this not happening is very very small. Giant SCC1 Giant SCC2 9/27/17 Jure Leskovec, Stanford CS224W: Analysis of Networks, http://cs224w.stanford.edu 20

  20. ¡ Directed version of the Web graph: § Altavista crawl from October 1999 § 203 million URLs, 1.5 billion links Computation: § Compute IN(v) and OUT(v) by starting at random nodes. § Observation: The BFS either visits many nodes or gets quickly stuck. 9/27/17 Jure Leskovec, Stanford CS224W: Analysis of Networks, http://cs224w.stanford.edu 21

  21. Result: Based on IN and OUT of a random node v : § Out( v ) ≈ 100 million ( 50% nodes) § In( v ) ≈ 100 million ( 50% nodes) § Largest SCC: 56 million ( 28% nodes) x-axis: rank y-axis: number of reached nodes ¡ What does this tell us about the conceptual picture of the Web graph? 9/28/17 Jure Leskovec, Stanford CS224W: Analysis of Networks, http://cs224w.stanford.edu 22

  22. 203 million pages, 1.5 billion links [Broder et al. 2000] 9/27/17 Jure Leskovec, Stanford CS224W: Analysis of Networks, http://cs224w.stanford.edu 23

  23. ¡ What did we learn: § Conceptual organization of the Web (i.e., the bowtie) ¡ What did we not learn: § Treats all pages as equal § Google’s homepage == my homepage § What are the most important pages § How many pages have k in-links as a function of k ? The degree distribution: ~ k -2 § Internal structure inside giant SCC § Clusters, implicit communities? § How far apart are nodes in the giant SCC: § Distance = # of edges in shortest path § Avg. = 16 [Broder et al.] 9/27/17 Jure Leskovec, Stanford CS224W: Analysis of Networks, http://cs224w.stanford.edu 24

  24. Degree distribution: P(k) Path length: h Clustering coefficient: C 9/27/17 Jure Leskovec, Stanford CS224W: Analysis of Networks, http://cs224w.stanford.edu 26

  25. ¡ Degree distribution P(k) : Probability that a randomly chosen node has degree k N k = # nodes with degree k ¡ Normalized histogram: P(k) 0.6 ➔ plot P(k) = N k / N 0.5 0.4 0.3 0.2 0.1 k 1 2 3 4 N k k 9/27/17 Jure Leskovec, Stanford CS224W: Analysis of Networks, http://cs224w.stanford.edu 27

  26. ¡ A path is a sequence of nodes in which each node is linked to the next one n = { i 0 , i 1 , i 2 ,..., i n } n = {( i 0 , i P P 1 ),( i 1 , i 2 ),( i 2 , i 3 ),...,( i n - 1 , i n )} ¡ Path can intersect itself and pass through the same edge multiple times B F A § E.g.: ACBDCDEG E D § In a directed graph a path G C can only follow the direction H X of the “arrow” 9/27/17 Jure Leskovec, Stanford CS224W: Analysis of Networks, http://cs224w.stanford.edu 28

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend