core decomposition of uncertain graphs
play

Core Decomposition of Uncertain Graphs Francesco Bonchi (Yahoo Labs, - PowerPoint PPT Presentation

Core Decomposition of Uncertain Graphs Francesco Bonchi (Yahoo Labs, Barcelona) Francesco Gullo (Yahoo Labs, Barcelona) Andreas Kaltenbrunner (Barcelona Media) Yana Volkovich (Cornell Tech, Barcelona Media) Introduction Core Decomposition of


  1. Core Decomposition of Uncertain Graphs Francesco Bonchi (Yahoo Labs, Barcelona) Francesco Gullo (Yahoo Labs, Barcelona) Andreas Kaltenbrunner (Barcelona Media) Yana Volkovich (Cornell Tech, Barcelona Media)

  2. Introduction Core Decomposition of Uncertain Graphs

  3. Introduction Core Decomposition of Uncertain Graphs

  4. Dense subgraphs ¡ finding dense subgraphs is a fundamental primitive in many graph problems

  5. Dense subgraphs ¡ finding dense subgraphs is a fundamental primitive in many graph problems ¡ different definitions of dense subgraphs: cliques, n-cliques, n-clans, k-plexes, k-cores, etc.

  6. Dense subgraphs ¡ finding dense subgraphs is a fundamental primitive in many graph problems ¡ different definitions of dense subgraphs: cliques, n-cliques, n-clans, k-plexes, k-cores, etc. ¡ most of them are computationally prohibitive: NP-hard or at least quadratic

  7. k-core decomposition ¡ core decomposition is particularly appealing: ¡ it can be computed in linear time ¡ it relates to many definitions of dense subgraphs

  8. k-core decomposition ¡ G =(V, E) is an undirected graph ¡ k-core of G is a maximal subgraph H = (C, E|C) such that ∀ v ∈ C : deg H (v) ≥ k

  9. k-core decomposition ¡ G =(V, E) is an undirected graph ¡ k-core of G is a maximal subgraph H = (C, E|C) such that ∀ v ∈ C : deg H (v) ≥ k

  10. k-core decomposition ¡ G =(V, E) is an undirected graph ¡ k-core of G is a maximal subgraph H = (C, E|C) such that ∀ v ∈ C : deg H (v) ≥ k k=1

  11. k-core decomposition ¡ G =(V, E) is an undirected graph ¡ k-core of G is a maximal subgraph H = (C, E|C) such that ∀ v ∈ C : deg H (v) ≥ k k=1

  12. k-core decomposition ¡ G =(V, E) is an undirected graph ¡ k-core of G is a maximal subgraph H = (C, E|C) such that ∀ v ∈ C : deg H (v) ≥ k k=2

  13. k-core decomposition ¡ G =(V,E) is an undirected graph ¡ k-core of G is a maximal subgraph H = (C, E|C) such that ∀ v ∈ C : deg H (v) ≥ k 2 2 2 1 1 1 ¡ core index of a vertex v is the highest order of a core that contains v

  14. Introduction Core Decomposition of Uncertain Graphs

  15. Uncertain graphs ¡ Many real live networks are associated with uncertainty: ¡ data collection process ¡ employed machine-learning methods ¡ privacy-preserving reasons ¡ biological networks, protein-interaction networks ¡ social networks

  16. Uncertain graphs ¡ Edges in an uncertain graph are associated with a probability of existence 0.5 0.7 0.2 0.4 0.5 0.1

  17. Uncertain graphs ¡ Edges in an uncertain graph are associated with a probability of existence 0.5 0.7 0.2 0.4 0.5 0.1 ¡ Uncertain graph is a generative model for deterministic graphs

  18. Uncertain graphs ¡ G = (V , E , p) be an uncertain graph : p : E → (0, 1] is a function that assigns a probability of existence to each edge. 0.5 0.7 0.2 0.4 0.5 0.1

  19. Uncertain graphs ¡ G = (V , E , p) be an uncertain graph : p : E → (0, 1] is a function that assigns a probability of existence to each edge. 0.5 0.7 0.2 … 0.4 0.5 0.1

  20. Uncertain graphs ¡ G = (V , E , p) be an uncertain graph : p : E → (0, 1] is a function that assigns a probability of existence to each edge. 0.5 0.7 0.2 … 0.4 0.5 0.1

  21. Introduction Core Decomposition of Uncertain Graphs

  22. Introduction Core Decomposition of Uncertain Graphs We want to extend the graph tool of core decomposition to the context of uncertain graphs.

  23. Complications ¡ The fact that core decomposition can be performed in linear time in deterministic graphs does not guarantee efficiency in uncertain graphs.

  24. Complications ¡ The fact that core decomposition can be performed in linear time in deterministic graphs does not guarantee efficiency in uncertain graphs. ¡ Are any two vertices connected?

  25. Complications ¡ The fact that core decomposition can be performed in linear time in deterministic graphs does not guarantee efficiency in uncertain graphs. ¡ Are any two vertices connected? ¡ in deterministic graph: a simple scan of the graph

  26. Complications ¡ The fact that core decomposition can be performed in linear time in deterministic graphs does not guarantee efficiency in uncertain graphs. ¡ Are any two vertices connected? ¡ in deterministic graph: a simple scan of the graph ¡ in uncertain graph: computing the probability that two vertices are connected is a #P-complete problem

  27. Probabilistic (k, η )-cores ¡ uncertain graph G = (V, E, p) ¡ threshold of uncertainty η∈ [0, 1] Probabilistic (k, η )-core of G is a maximal subgraph H = (C, E|C, p) such that ∀ v ∈ C : Pr[deg H (v) ≥ k] ≥ η

  28. Probabilistic (k, η )-cores ¡ uncertain graph G = (V, E, p) ¡ threshold of uncertainty η∈ [0, 1] Probabilistic (k, η )-core of G is a maximal subgraph H = (C, E|C, p) such that ∀ v ∈ C : Pr[deg H (v) ≥ k] ≥ η 0.4 e.g. Pr[deg(v) ≥ 2] =Pr[deg(v)=2] + [deg(v)=3] = =(0.1*0.5*0.6+0.1*0.4*0.5+0.5*0.4*0.9)+(0.5*0.1*0.4) 0.5 0.1 v d v =3

  29. Probabilistic (k, η )-cores ¡ uncertain graph G = (V, E, p) ¡ threshold of uncertainty η∈ [0, 1] Probabilistic (k, η )-core of G is a maximal subgraph H = (C, E|C, p) such that ∀ v ∈ C : Pr[deg H (v) ≥ k] ≥ η 0.4 0.5 0.1 v This probability is monotonically non-increasing with k d v =3

  30. Probabilistic (k, η )-cores ¡ η -degree of any vertex v ∈ V is defined as η -deg(v) = max { k ∈ [0..d v ] | Pr[deg(v) ≥ k] ≥ η }

  31. Probabilistic (k, η )-cores ¡ η -degree of any vertex v ∈ V is defined as η -deg(v) = max { k ∈ [0..d v ] | Pr[deg(v) ≥ k] ≥ η } η =0.02 η -deg = 3 0.4 η =0.25 η -deg = 2 0.5 0.1 v η =0.73 η -deg = 1 η = 1 η -deg = 0 d v =3

  32. Probabilistic (k, η )-cores ¡ η -degree of any vertex v ∈ V is defined as η -deg(v) = max { k ∈ [0..d v ] | Pr[deg(v) ≥ k] ≥ η } η =0.02 η -deg = 3 0.4 η =0.25 η -deg = 2 0.5 0.1 v η =0.73 η -deg = 1 η = 1 η -deg = 0 d v =3 ¡ We use η -degree to define (k, η )-core decomposition in a similar manner as degree in deterministic case.

  33. Computing probabilistic cores ¡ We have proven uniqueness and existence of (k, η )-core decomposition of G .

  34. Computing probabilistic cores ¡ Since naïve computation of η -degrees leads to exponential time complexity, we defined a dynamic-programming method for (k, η )-core decomposition.

  35. Computing probabilistic cores ¡ We have shown the running time of (k, η )-core decomposition is O(m ∆ ) , where ¡ m is the number of edges ¡ ∆ is the maximum η -degree over all vertices

  36. Computing probabilistic cores ¡ We have derived a fast-to-compute lower bound on the η -degree to speed up (k, η )-core computations.

  37. Applications 1. Task-driven team formation 2. Influence-maximization problem

  38. 1. Task-driven team formation problem ¡ A collaboration graph: ¡ vertices are individuals ¡ edges exhibit a probabilistic topic model representing the topic(s) of past collaborations

  39. 1. Task-driven team formation problem ¡ A collaboration graph: ¡ vertices are individuals ¡ edges exhibit a probabilistic topic model representing the topic(s) of past collaborations ¡ A query is a pair ⟨ T,Q ⟩ : ¡ T is a set of terms describing a new task ¡ Q is a set of vertices

  40. 1. Task-driven team formation problem ¡ A collaboration graph: ¡ vertices are individuals ¡ edges exhibit a probabilistic topic model representing the topic(s) of past collaborations ¡ A query is a pair ⟨ T,Q ⟩ : ¡ T is a set of terms describing a new task ¡ Q is a set of vertices ¡ The goal is to find an answer set of vertices A, such that A ⊇ Q is a good team for the task described by T.

  41. 2. Influence-maximization problem ¡ Independent cascade (IC) model: ¡ Links have associated probability; ¡ Every active node v has a single chance of activating each currently inactive neighbor w with probability p vw

  42. 2. Influence-maximization problem ¡ Independent cascade (IC) model: ¡ Links have associated probability; ¡ Every active node v has a single chance of activating each currently inactive neighbor w with probability p vw 0.5 0.2 0.7 v 0.4 0.5 0.1

  43. 2. Influence-maximization problem ¡ Independent cascade (IC) model: ¡ Links have associated probability; ¡ Every active node v has a single chance of activating each currently inactive neighbor w with probability p vw 0.5 x w 0.2 0.7 v 0.4 0.5 0.1 y

  44. 2. Influence-maximization problem ¡ Independent cascade (IC) model: ¡ Links have associated probability; ¡ Every active node v has a single chance of activating each currently inactive neighbor w with probability p vw 0.5 x w 0.2 0.7 v 0.4 0.5 0.1 z y u

  45. 2. Influence-maximization problem ¡ Finding a set S, |S|=s, of vertices that maximizes the expected spread σ (S) is a NP-hard problem

  46. 2. Influence-maximization problem ¡ Finding a set S, |S|=s, of vertices that maximizes the expected spread σ (S) is a NP-hard problem ¡ Greedy algorithm adds the vertex bringing the largest marginal gain in the objective function.

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