TrCIM: Scaling Positive Influence in Competitive Social Networks through Trust-Based Pruning

Maximizing positive influence in competitive social networks: A trust-based solution

2020-09-08
Feng Wang, Jinhua She, Yasuhiro Ohyama, Wenjun Jiang, Geyong Min, Guojun Wang, Min Wu
Summary
Problem
Method
Results
Takeaways
Abstract

This paper proposes a trust-based solution for Maximizing Competitive Influence (CIM) in social networks by introducing the TrCID (Trust-based Competitive Influence Diffusion) model and the TrCIM algorithm. The method leverages trust evaluation through generalized network flows to estimate influence probabilities, achieving significantly higher seed detection efficiency while maintaining competitive influence spread compared to SOTA greedy algorithms.

Executive Summary (TL;DR)

In the hyper-competitive landscape of Online Social Networks (OSNs), information doesn't spread in a vacuum—it competes with opposing views. This paper introduces TrCIM, a framework designed to maximize positive influence by integrating trust evaluation into a dynamic diffusion model. By replacing slow Monte-Carlo simulations with a savvy heuristic pruning method, the authors achieve a 300% performance boost over traditional heuristics and a massive leap in computational efficiency, making it viable for large-scale networks like Sina Weibo and Epinions.

Problem & Motivation: Beyond Simple Information Cascades

Most classical Influence Maximization (IM) models (like the Independent Cascade or Linear Threshold models) treat information spread as a single-player game. However, real-world OSNs are battlefields where positive opinions (e.g., brand loyalty) compete with negative ones (e.g., criticism).

The authors identify three critical gaps in prior SOTA:

  1. Neglecting Trust: Most models use static probabilities; they don't account for the confidence user A has in user B.
  2. Static Nature: They ignore that trust and influence decay over time.
  3. Scalability Bottleneck: The standard Greedy algorithm relies on Monte-Carlo (MC) simulations, which are too slow for networks with millions of nodes.

Methodology: The TrCID Model and TrCIM Algorithm

1. The TrCID Diffusion Model

Instead of assuming influence probabilities are fixed, the authors propose the Trust-based Competitive Influence Diffusion (TrCID) model. It incorporates:

  • Trust Evaluation: Using generalized network flows (treating trust like a fluid), the model calculates trust degrees between indirectly linked nodes.
  • Time Decay: A leakage function () is introduced to simulate how influence wanes as time passes.

TrCID Diffusion Logic Fig 1: Illustrating the gap between direct measurable data and indirect trust-based influence.

2. TrCIM: Pruning for Efficiency

The core innovation is how the algorithm selects "seed" users. Rather than simulating the whole network (MC simulations), TrCIM avoids the bottleneck by calculating a positive marginal gain. For every non-seed user, it estimates their value by subtracting the "influence loss" (overlaps) they would have with the existing seed set.

System Framework Fig 2: The Solution Framework encompassing modelling, estimation, and discovery.

Experiments & Results: Effectiveness Meets Speed

The authors benchmarked TrCIM against Random, Positive Degree, Greedy, and TMID algorithms across four major datasets.

Performance Comparison

  • Spread Magnitude: TrCIM consistently outperformed heuristic methods. In Sina Weibo and Epinions datasets, it performed 300% better than random selection and 25% better than the hybrid TMID model.
  • Running Time: On synthetic datasets, while the standard Greedy algorithm struggled to scale, TrCIM completed the task in under 5 minutes.

Performance Comparison Fig 3: Comparison of influence spread over various seed set sizes (Budget k).

The "Trust" Factor

The "Overlap Ratio" experiments (Fig 8 in the paper) proved that models ignoring trust decay (like standard CLT) produce vastly different (and likely inaccurate) results compared to the TrCID model. This suggests that Trust is not just a feature, but a fundamental requirement for accurate influence modeling.

Critical Analysis & Conclusion

Takeaway

TrCIM represents a significant shift from "purely mathematical" graph theory toward a "sociology-inspired" mathematical approach. By quantifying trust and time-decay, the model mirrors real human behavior more closely than its predecessors.

Limitations

  1. Dynamic Topology: The paper assumes a relatively static graph structure; however, OSN links appear and disappear rapidly in real life.
  2. Distrust Complexity: While the model uses distrust for negative influence, the nuances of "coordinated negativity" (e.g., bot attacks) might require even more complex modeling.

Future Work

The next frontier for this research lies in dynamic network robustness. As social networks evolve, maintaining the influence of a seed set becomes harder—devising algorithms that can adapt the seed set in real-time as the network topology shifts will be the "Holy Grail" of CIM.

Find Similar Papers

Try Our Examples

  • Search for recent papers published after 2020 that utilize Graph Neural Networks (GNNs) or Deep Reinforcement Learning to solve the Competitive Influence Maximization problem.
  • Which paper first introduced the Generalized Network Flow theory for trust evaluation in social networks, and how does the current TrCID model refine its leak function and gain factor?
  • Explore studies that apply trust-based influence maximization approaches to mitigate the spread of "fake news" or "misinformation" in polarising social media environments.
Contents
TrCIM: Scaling Positive Influence in Competitive Social Networks through Trust-Based Pruning
1. Executive Summary (TL;DR)
2. Problem & Motivation: Beyond Simple Information Cascades
3. Methodology: The TrCID Model and TrCIM Algorithm
3.1. 1. The TrCID Diffusion Model
3.2. 2. TrCIM: Pruning for Efficiency
4. Experiments & Results: Effectiveness Meets Speed
4.1. Performance Comparison
4.2. The "Trust" Factor
5. Critical Analysis & Conclusion
5.1. Takeaway
5.2. Limitations
5.3. Future Work