submodular maximization in a data streaming setting amit
play

Submodular Maximization in a Data Streaming Setting Amit - PowerPoint PPT Presentation

Submodular Maximization in a Data Streaming Setting Amit Chakrabarti Dartmouth College Hanover, NH, USA Based on joint work with Sagar Kale Sublinear Algorithms Workshop Bertinoro, May 2014 Maximum Matching The cardinality version Maximum


  1. Submodular Maximization in a Data Streaming Setting Amit Chakrabarti Dartmouth College Hanover, NH, USA Based on joint work with Sagar Kale Sublinear Algorithms Workshop Bertinoro, May 2014

  2. Maximum Matching The cardinality version

  3. Maximum Matching The cardinality version

  4. Maximum Matching 2 1 5 2 2 8 6 1 1 2 The weighted version

  5. Maximum Matching 2 1 5 2 2 8 6 1 1 2 The weighted version

  6. Maximum Matching in a Graph Stream Maximum cardinality matching (MCM) • Input: stream of edges ( u, v ) ∈ [ n ] × [ n ] • Describes graph G = ( V, E ) : n vertices, m edges, undirected, simple • Each edge appears exactly once in stream • Goal – Output a matching M ⊆ E , with | M | maximal

  7. Maximum Matching in a Graph Stream Maximum cardinality matching (MCM) • Input: stream of edges ( u, v ) ∈ [ n ] × [ n ] • Describes graph G = ( V, E ) : n vertices, m edges, undirected, simple • Each edge appears exactly once in stream • Goal – Output a matching M ⊆ E , with | M | maximal – Use sublinear (in m ) working memory – Ideally O ( n polylog n ) ... “semi-streaming” – Need Ω( n log n ) to store M

  8. Maximum Matching in a Graph Stream Maximum cardinality matching (MCM) • Input: stream of edges ( u, v ) ∈ [ n ] × [ n ] • Describes graph G = ( V, E ) : n vertices, m edges, undirected, simple • Goal: output a matching M ⊆ E , with | M | maximal

  9. Maximum Matching in a Graph Stream Maximum cardinality matching (MCM) • Input: stream of edges ( u, v ) ∈ [ n ] × [ n ] • Describes graph G = ( V, E ) : n vertices, m edges, undirected, simple • Goal: output a matching M ⊆ E , with | M | maximal Maximum weight matching (MWM) • Input: stream of weighted edges ( u, v, w uv ) ∈ [ n ] × [ n ] × R + • Goal: output matching M ⊆ E , with w ( M ) = � e ∈ M w ( e ) maximal

  10. Maximum Matching in a Graph Stream Maximum cardinality matching (MCM) • Input: stream of edges ( u, v ) ∈ [ n ] × [ n ] • Describes graph G = ( V, E ) : n vertices, m edges, undirected, simple • Goal: output a matching M ⊆ E , with | M | maximal Maximum weight matching (MWM) • Input: stream of weighted edges ( u, v, w uv ) ∈ [ n ] × [ n ] × R + • Goal: output matching M ⊆ E , with w ( M ) = � e ∈ M w ( e ) maximal Maximum submodular-function matching (MSM) ← this talk • Input: unweighted edges ( u, v ) , plus submodular f : 2 E → R + • Goal: output matching M ⊆ E , with f ( M ) maximal

  11. Maximum Submodular Matching Input • Stream of edges σ = � e 1 , e 2 , . . . , e m � • Valuation function f : 2 E → R + – Submodular, i.e., ∀ X ⊆ Y ⊆ E ∀ e ∈ E f ( X + e ) − f ( X ) ≥ f ( Y + e ) − f ( Y ) – Monotone, i.e., X ⊆ Y = ⇒ f ( X ) ≤ f ( Y ) – Normalized, i.e., f ( ∅ ) = 0 • Oracle access to f : query at X ⊆ E , get f ( X ) – May only query at X ⊆ ( stream so far ) Goal • Output matching M ⊆ E , with f ( M ) maximal “large” • Store O ( n ) edges and f -values

  12. Our Results Can’t solve MSM exactly • MCM, approx < e/ ( e − 1) = ⇒ space ω ( n polylog n ) [Kapralov’13] ⇒ n ω (1) oracle calls • Offline MSM, approx < e/ ( e − 1) = [this work] – Via cardinality-constrained submodular max [Nemhauser-Wolsey’78]

  13. Our Results Can’t solve MSM exactly • MCM, approx < e/ ( e − 1) = ⇒ space ω ( n polylog n ) [Kapralov’13] ⇒ n ω (1) oracle calls • Offline MSM, approx < e/ ( e − 1) = [this work] – Via cardinality-constrained submodular max [Nemhauser-Wolsey’78] Our results, using O ( n ) storage: Theorem 1 MSM, one pass: 7 . 75 -approx MSM, (3 + ε ) -approx in O ( e − 3 ) passes Theorem 2

  14. Our Results Can’t solve MSM exactly • MCM, approx < e/ ( e − 1) = ⇒ space ω ( n polylog n ) [Kapralov’13] ⇒ n ω (1) oracle calls • Offline MSM, approx < e/ ( e − 1) = [this work] – Via cardinality-constrained submodular max [Nemhauser-Wolsey’78] Our results, using O ( n ) storage: Theorem 1 MSM, one pass: 7 . 75 -approx MSM, (3 + ε ) -approx in O ( e − 3 ) passes Theorem 2 More importantly: Meta-Thm 1 Every compliant MWM approx alg → MSM approx alg

  15. Our Results Can’t solve MSM exactly • MCM, approx < e/ ( e − 1) = ⇒ space ω ( n polylog n ) [Kapralov’13] ⇒ n ω (1) oracle calls • Offline MSM, approx < e/ ( e − 1) = [this work] – Via cardinality-constrained submodular max [Nemhauser-Wolsey’78] Our results, using O ( n ) storage: Theorem 1 MSM, one pass: 7 . 75 -approx MSM, (3 + ε ) -approx in O ( e − 3 ) passes Theorem 2 More importantly: Meta-Thm 1 Every compliant MWM approx alg → MSM approx alg Meta-Thm 2 Similarly, max weight independent set (MWIS) → MSIS

  16. Some Previous Work on MWM Greedy maximal matching: 2 -approx for MCM, useless for MWM Maintain “current solution” M , update if new edge improves it 2 3 2 unpicked edge picked edge 1 2 What if input is path with edge weights 1 + ε, 1 + 2 ε, 1 + 3 ε, . . . ? Update M only upon sufficient improvement

  17. Some Previous Work on MWM Greedy maximal matching: 2 -approx for MCM, useless for MWM Maintain “current solution” M , update if new edge improves it 2 3 2 unpicked edge 8 picked edge 1 2 What if input is path with edge weights 1 + ε, 1 + 2 ε, 1 + 3 ε, . . . ? Update M only upon sufficient improvement

  18. Some Previous Work on MWM Greedy maximal matching: 2 -approx for MCM, useless for MWM Maintain “current solution” M , update if new edge improves it 2 3 2 unpicked edge 8 picked edge 1 2 What if input is path with edge weights 1 + ε, 1 + 2 ε, 1 + 3 ε, . . . ? Update M only upon sufficient improvement

  19. Compliant Algorithms for MWM Greedy maximal matching: 2 -approx for MCM, useless for MWM Maintain “current solution” M , update if new edge improves it 2 3 2 unpicked edge 8 picked edge 1 2 What if input is path with edge weights 1 + ε, 1 + 2 ε, 1 + 3 ε, . . . ?

  20. Compliant Algorithms for MWM Greedy maximal matching: 2 -approx for MCM, useless for MWM Maintain “current solution” M , update if new edge improves it 2 3 2 unpicked edge 8 picked edge 1 2 What if input is path with edge weights 1 + ε, 1 + 2 ε, 1 + 3 ε, . . . ? Update M only upon sufficient improvement

  21. Examples of Compliant Algorithms for MWM Update of “current solution” M • Given new edge e , pick “augmenting pair” ( A, J ) – A ← { e } – J ← M ⋓ A ... edges in M that conflict with A – Ensure w ( A ) ≥ (1 + γ ) w ( J ) • Update M ← ( M \ J ) ∪ A

  22. Examples of Compliant Algorithms for MWM Update of “current solution” M • Given new edge e , pick “augmenting pair” ( A, J ) – A ← { e } – J ← M ⋓ A ... edges in M that conflict with A – Ensure w ( A ) ≥ (1 + γ ) w ( J ) • Update M ← ( M \ J ) ∪ A Choice of gain parameter • γ = 1 , approx factor 6 [Feigenbaum-K-M-S-Z’05] √ • γ = 1 / 2 , approx factor 5 . 828 [McGregor’05]

  23. Examples of Compliant Algorithms for MWM Update of “current solution” M • Given new edge e , pick “augmenting pair” ( A, J ) – A ← { e } A ← “best” subset of 3 -neighbourhood of e – J ← M ⋓ A ... edges in M that conflict with A – Ensure w ( A ) ≥ (1 + γ ) w ( J ) • Update M ← ( M \ J ) ∪ A Choice of gain parameter • γ = 1 , approx factor 6 [Feigenbaum-K-M-S-Z’05] √ • γ = 1 / 2 , approx factor 5 . 828 [McGregor’05] • γ = 1 . 717 , approx factor 5 . 585 [Zelke’08]

  24. Examples of Compliant Algorithms for MWM Update of “current solution” M + pool of “shadow edges” S • Given new edge e , pick “augmenting pair” ( A, J ) – A ← { e } A ← “best” subset of 3 -neighbourhood of e – J ← M ⋓ A ... edges in M that conflict with A – Ensure w ( A ) ≥ (1 + γ ) w ( J ) • Update M ← ( M \ J ) ∪ A • Update S ← appropriate subset of ( S \ A ) ∪ J Choice of gain parameter • γ = 1 , approx factor 6 [Feigenbaum-K-M-S-Z’05] √ • γ = 1 / 2 , approx factor 5 . 828 [McGregor’05] • γ = 1 . 717 , approx factor 5 . 585 [Zelke’08]

  25. Generic Compliant Algorithm and f -Extension for MSM 6: procedure Process-Edge ( e, M, S, γ ) 7: ( A, J ) ← a well-chosen augmenting pair for M 8: with A ⊆ M ∪ S + e , w ( A ) ≥ (1 + γ ) w ( J ) M ← ( M \ J ) ∪ A 9: S ← a well-chosen subset of ( S \ A ) ∪ J 10:

  26. Generic Compliant Algorithm and f -Extension for MSM 6: procedure Process-Edge ( e, M, S, γ ) 7: ( A, J ) ← a well-chosen augmenting pair for M 8: with A ⊆ M ∪ S + e , w ( A ) ≥ (1 + γ ) w ( J ) M ← ( M \ J ) ∪ A 9: S ← a well-chosen subset of ( S \ A ) ∪ J 10: MWM alg A + submodular f → MSM alg A f (the f -extension of A )

  27. Generic Compliant Algorithm and f -Extension for MSM 6: procedure Process-Edge ( e, M, S, γ ) w ( e ) ← f ( M ∪ S + e ) − f ( M ∪ S ) 7: ( A, J ) ← a well-chosen augmenting pair for M 8: with A ⊆ M ∪ S + e , w ( A ) ≥ (1 + γ ) w ( J ) M ← ( M \ J ) ∪ A 9: S ← a well-chosen subset of ( S \ A ) ∪ J 10: MWM alg A + submodular f → MSM alg A f (the f -extension of A )

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