Int-Div: Balancing Collaboration and Coverage in Social Influence Maximization

Combining intensification and diversification to maximize the propagation of social influence

2013-06-01
Xiaoguang Fan, Victor O. K. Li
Summary
Problem
Method
Results
Takeaways
Abstract

This paper introduces the Int-Div heuristic for the Influence Maximization (IM) problem in social networks. By integrating the concepts of "Intensification" (collaborative activation) and "Diversification" (coverage expansion), the method achieves near-Greedy performance while drastically reducing computational overhead.

TL;DR

The Influence Maximization (IM) problem—selecting seeds to trigger the largest cascade—has long been torn between the accuracy of Greedy algorithms and the speed of simple heuristics. This paper introduces Int-Div, a heuristic that bridges this gap. By explicitly modeling "Intensification" (how seeds work together) and "Diversification" (how to avoid overlap), it achieves near-optimal results at a fraction of the computational cost (reducing runtime from 58 days to about 1 hour on large networks).

The Core Conflict: Clustering vs. Spreading

Most influence maximization strategies fail for one of two reasons:

  1. Redundancy: Centrality-based methods (like selecting high-degree nodes) often pick seeds that are close to each other. Their influence circles overlap, wasting the "budget" on nodes already likely to be activated.
  2. Complexity: High-fidelity simulations used in Greedy algorithms require thousands of Monte Carlo runs for every potential seed selection, making them unusable for networks like Facebook or LinkedIn.

The authors' insight is rooted in metaheuristics: effective search requires Intensification (exploiting the teamwork effect where multiple neighbors activate a common node) and Diversification (exploring new, untapped regions of the graph).

Methodology: The Marginal Influence Increment (MII)

The heart of the paper is the Marginal Influence Increment (MII). When selecting a new seed given an existing set , the algorithm doesn't just look at 's degree. It calculates:

  • : The probability that isn't already influenced by . If is likely already active, its value as a seed drops.
  • (Intensification): Evaluates the "boost" node gives to neighbors that are already neighbors of .
  • (Diversification): Evaluates the influence brings to "fresh" nodes that current seeds cannot reach.

To further refine this, the authors use an up-to-2-hop degree metric, acknowledging the "strength of weak ties"—the idea that your neighbor's influence is as vital as your own.

Model Architecture and Example Graph Figure 1: A social graph illustrating the seed selection process where Node C and A are prioritized to maximize coverage while acknowledging shared neighbors.

Performance: Greedy Results at Heuristic Speeds

The experimental results are striking across both Linear Threshold (LTM) and Independent Cascade (ICM) models.

1. Accuracy

On the Epinions (ESN) dataset (75k nodes), the Greedy algorithm becomes "computationally infeasible" once the seed set exceeds 12. Int-Div, however, continues to scale, maintaining a performance profile that hugs the Greedy curve almost perfectly.

2. Efficiency

The runtime data reveals the true value of Int-Div. In a collaboration network (CN), while Greedy takes 18.1 hours, Int-Div finishes in just 0.0228 hours (approx. 82 seconds).

SOTA Comparison Table Table 2: Comparison of computation times showing Int-Div operating at 3 orders of magnitude faster than Greedy.

Critical Analysis & Takeaways

The brilliance of Int-Div lies in its Local-to-Global Approximation. By only looking at 2-hop neighborhoods and calculating MII, it captures the essential dynamics of a global cascade without the need for exhaustive simulation.

Limitations:

  • The paper assumes static network topology. In real-world viral marketing, the network may be dynamic or partially observed.
  • While MII is effective, the specific weights () in LTM are often hard to estimate in real life.

Conclusion: Int-Div proves that sophisticated influence modeling doesn't have to be slow. By balancing the drive to "cluster" for localized activation and "spread" for broad reach, this heuristic provides a production-ready solution for viral marketing and information dissemination.

Find Similar Papers

Try Our Examples

  • Find recent papers that utilize 2-hop or k-hop neighborhood information to solve influence maximization in heterogeneous or dynamic social networks.
  • Which paper first established the "Greedy Algorithm" with a (1-1/e) approximation guarantee for influence maximization, and how does the Int-Div heuristic's theoretical bound compare?
  • Explore research that applies intensification and diversification metaheuristics to influence maximization problems in cross-platform social media marketing.
Contents
Int-Div: Balancing Collaboration and Coverage in Social Influence Maximization
1. TL;DR
2. The Core Conflict: Clustering vs. Spreading
3. Methodology: The Marginal Influence Increment (MII)
4. Performance: Greedy Results at Heuristic Speeds
4.1. 1. Accuracy
4.2. 2. Efficiency
5. Critical Analysis & Takeaways