fair k centers via maximum matching
play

Fair k -centers via Maximum Matching by Huy Nguyen, Matthew Jones, - PowerPoint PPT Presentation

Fair k -centers via Maximum Matching by Huy Nguyen, Matthew Jones, Thy Nguyen June 15, 2020 by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 1 / 18 Content Introduction The fair k -centers problem


  1. Fair k -centers via Maximum Matching by Huy Nguyen, Matthew Jones, Thy Nguyen June 15, 2020 by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 1 / 18

  2. Content Introduction The fair k -centers problem Approach using maximum matching Experiments by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 2 / 18

  3. Introduction Clustering Clustering - using a small set of centers to approximate a large data set. k-centers clustering - minimize the maximum cluster radius Formally: Input: k , a set S of n points, a metric d Find: s ∈ S d ( s , S ′ ) arg S ′ ⊆ S , | S ′ | = k max min where d ( s , S ′ ) = min s ′ ∈ S ′ d ( s , s ′ ). by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 3 / 18

  4. Introduction k-Centers Clustering The k -centers problem is NP-hard (up to a 2-approximation) by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 4 / 18

  5. Introduction k-Centers Clustering The k -centers problem is NP-hard (up to a 2-approximation) Gonzalez gives a greedy 2-approximation algorithm by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 4 / 18

  6. Introduction k-Centers Clustering The k -centers problem is NP-hard (up to a 2-approximation) Gonzalez gives a greedy 2-approximation algorithm Choose the first center arbitrarily by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 4 / 18

  7. Introduction k-Centers Clustering The k -centers problem is NP-hard (up to a 2-approximation) Gonzalez gives a greedy 2-approximation algorithm Choose the first center arbitrarily Choose each center as the farthest from the previously selected centers by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 4 / 18

  8. Introduction k-Centers Clustering The k -centers problem is NP-hard (up to a 2-approximation) Gonzalez gives a greedy 2-approximation algorithm Choose the first center arbitrarily Choose each center as the farthest from the previously selected centers O ( n ) time to choose each center, whole algorithm is O ( nk ) by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 4 / 18

  9. Introduction A Framework for Fairness Fairness - removing inherent bias in an algorithm. Not necessarily an inherent mathematical concept To add fairness: Items in S have a demographic group property Each dem. group i gets k i centers � m i =1 k i = k In these slides, we use ”fair” to mean satisfying all k i as upper bounds. by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 5 / 18

  10. The Fair k -Centers Problem Previous Work on k -centers with Fairness Multiple papers present algorithms for fair k -centers: Chen et al. presented a 3-approximation algorithm, runs in Ω( n 2 log n ) by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 6 / 18

  11. The Fair k -Centers Problem Previous Work on k -centers with Fairness Multiple papers present algorithms for fair k -centers: Chen et al. presented a 3-approximation algorithm, runs in Ω( n 2 log n ) Kleindessner et al. introduced an O ( nkm 2 + km 4 ) algorithm with guaranteed approximation factor 3 · 2 m − 1 − 1 by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 6 / 18

  12. The Fair k -Centers Problem Previous Work on k -centers with Fairness Multiple papers present algorithms for fair k -centers: Chen et al. presented a 3-approximation algorithm, runs in Ω( n 2 log n ) Kleindessner et al. introduced an O ( nkm 2 + km 4 ) algorithm with guaranteed approximation factor 3 · 2 m − 1 − 1 We present an O ( nk )-time 3-approximation algorithm for fair k -centers by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 6 / 18

  13. Our Approach Overview A high-level overview of the algorithm is as follows: Obtain k initial (unfair) centers, using Gonzalez by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 7 / 18

  14. Our Approach Overview A high-level overview of the algorithm is as follows: Obtain k initial (unfair) centers, using Gonzalez Find the largest prefix of these which can be ”shifted fairly” by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 7 / 18

  15. Our Approach Overview A high-level overview of the algorithm is as follows: Obtain k initial (unfair) centers, using Gonzalez Find the largest prefix of these which can be ”shifted fairly” Shift these centers, choose the rest arbitrarily by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 7 / 18

  16. Our Approach Overview A high-level overview of the algorithm is as follows: Obtain k initial (unfair) centers, using Gonzalez Find the largest prefix of these which can be ”shifted fairly” Shift these centers, choose the rest arbitrarily The first step is well-defined, how do we accomplish the second and third steps? by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 7 / 18

  17. Our Approach Fair Shift Constraint Fair Shift - replacing each point with a ”neighbor” such that the new set is fair Does a fair shift exist within radius r for some set of points P ? by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 8 / 18

  18. Our Approach Fair Shift Constraint Fair Shift - replacing each point with a ”neighbor” such that the new set is fair Does a fair shift exist within radius r for some set of points P ? Draw balls of radius r around the centers by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 8 / 18

  19. Our Approach Fair Shift Constraint Fair Shift - replacing each point with a ”neighbor” such that the new set is fair Does a fair shift exist within radius r for some set of points P ? Draw balls of radius r around the centers Reduce to matching: by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 8 / 18

  20. Our Approach Fair Shift Constraint Fair Shift - replacing each point with a ”neighbor” such that the new set is fair Does a fair shift exist within radius r for some set of points P ? Draw balls of radius r around the centers Reduce to matching: Each point in P gets one point in partition A by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 8 / 18

  21. Our Approach Fair Shift Constraint Fair Shift - replacing each point with a ”neighbor” such that the new set is fair Does a fair shift exist within radius r for some set of points P ? Draw balls of radius r around the centers Reduce to matching: Each point in P gets one point in partition A Each demographic group gets k i points in partition B by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 8 / 18

  22. Our Approach Fair Shift Constraint Fair Shift - replacing each point with a ”neighbor” such that the new set is fair Does a fair shift exist within radius r for some set of points P ? Draw balls of radius r around the centers Reduce to matching: Each point in P gets one point in partition A Each demographic group gets k i points in partition B ab ∈ E iff point a (in P ) has demographic group b in its ball (including a itself) by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 8 / 18

  23. Our Approach Fair Shift Constraint Fair Shift - replacing each point with a ”neighbor” such that the new set is fair Does a fair shift exist within radius r for some set of points P ? Draw balls of radius r around the centers Reduce to matching: Each point in P gets one point in partition A Each demographic group gets k i points in partition B ab ∈ E iff point a (in P ) has demographic group b in its ball (including a itself) Edges in match of size | P | give a fair shift iff one exists by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 8 / 18

  24. Our Approach Optimizing the Algorithm For runtime, it is more efficient to view this as a maximum flow problem: Partition B gets 1 point per demographic group. by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 9 / 18

  25. Our Approach Optimizing the Algorithm For runtime, it is more efficient to view this as a maximum flow problem: Partition B gets 1 point per demographic group. Add edges from s to Partition A with capacity 1 and from Partition B to t with capacity k i . by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 9 / 18

  26. Our Approach Optimizing the Algorithm For runtime, it is more efficient to view this as a maximum flow problem: Partition B gets 1 point per demographic group. Add edges from s to Partition A with capacity 1 and from Partition B to t with capacity k i . Now, each point in S yields at most 1 edge ab ∈ E so | E | ≤ n + O ( k ) = O ( n ) and | V | = 2 + 2 k + m = O ( k ) by Huy Nguyen, Matthew Jones, Thy Nguyen Fair k -centers via Maximum Matching June 15, 2020 9 / 18

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