UIC-InDeXLab / FCS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fair Content Spread

Maximizing Fair Content Spread via Edge Suggestion in Social Networks

Abstract

Content spread inequity is a potential unfairness issue in online social networks, disparately impacting minority groups. In this paper, we view friendship suggestion, a common feature in social network platforms, as an opportunity to achieve an equitable spread of content. In particular, we propose to suggest a subset of potential edges (currently not existing in the network but likely to be accepted) that maximizes content spread while achieving fairness. Instead of re-engineering the existing systems, our proposal builds a fairness wrapper on top of the existing friendship suggestion components.

We prove the problem is NP-hard and inapproximable in polynomial time unless P = NP. Therefore, allowing \new{relaxation of the fairness constraint}, we propose an algorithm based on LP-relaxation and randomized rounding with fixed approximation ratios on fairness and content spread. We provide multiple optimizations, further improving the performance of our algorithm in practice. Besides, we propose a scalable algorithm that dynamically adds subsets of nodes, chosen via iterative sampling, and solves smaller problems corresponding to these nodes. Besides theoretical analysis, we conduct comprehensive experiments on real and synthetic data sets. Across different settings, our algorithms found solutions with near-zero unfairness while significantly increasing the content spread. Our scalable algorithm could process a graph with half a million nodes on a single machine, reducing the unfairness to around 0.0004 while lifting content spread by 43%.

Publications to cite:

[1] Ian Swift, Sana Ebrahimi, Azade Nova, Abolfazl Asudeh. Maximizing Fair Content Spread via Edge Suggestion in Social Networks. PVLDB, 15(11): 2692 - 2705, 2022.

Getting Started

These instructions will get you a copy of the project up and running on your local machine, and allow you to generate some of the result data from the paper [1].

Prerequisites

What things you need to install the software and how to install them

Running

From the terminal, run the FCS.py script by entering: python3 FCS.py. This will generate one at a time several pickle files of the form 'medium-graph-'+algorithm+'-size-'+str(sizePos)+'-trial-'+str(trial)+'.pickle' for the following parameters:

  • algorithm in: 'ForestFire' (LP-SCALE), 'CG' (Continuous Greedy), 'IterFCS' (LP-Advanced), 'SPGREEDY', 'ACR', and 'IRFA'.

  • size in 0-3, where 0 = 500 Nodes, 1 = 1000 Nodes, 2 = 2000 Nodes and 3 = 4000 Nodes.

  • trial in 0-4, where each number represents a unique problem input

When loading the pickle file, the results will be stored in a python dictionary.

Authors

Additional Acknowlegements

Some code was used from the following open source repositories, and accordingly, we would like to acknowledge them for openly providing their work:

License

This project is licensed under the GNU General Public License v3.0 - see the LICENSE.md file for details

About

License:GNU General Public License v3.0


Languages

Language:Python 100.0%