Beyond Simple Metrics: Mastering User Reputation through Collective Intelligence

User Reputation Evaluation Using Co-occurrence Feature and Collective Intelligence

2009-01-01
Jeong-Won Cha, Hyunwoo Lee, Yo-Sub Han, Laehyun Kim
Summary
Problem
Method
Results
Takeaways
Abstract

This paper introduces a User Reputation (UR) evaluation framework for Q&A services using a modified PageRank algorithm. By integrating n-gram co-occurrence similarity and collective intelligence (selection/recommendation rates), the method effectively identifies high-quality contributors even when traditional metrics like view counts are low.

TL;DR

In the vast ocean of Web 2.0 content, how do we distinguish a "subject matter expert" from a "prolific spammer"? This paper proposes a modified PageRank algorithm that calculates User Reputation (UR) by analyzing the social dynamics of Q&A platforms. By blending n-gram similarity (content relevance) with collective intelligence (user selections and recommendations), it provides a sophisticated way to rank contributors and surface high-quality content even before it goes viral.

Background: The Limits of Metadata

Most social platforms rely on "shallow" features to rank answers: the number of likes, the length of the text, or the number of views. However, these are easily gamed. A user can write a long, irrelevant answer or use bots to inflate view counts. The authors argue that true content value is better estimated by the reputation of the author, which is an emergent property of their social interactions and the community's collective validation.

Methodology: A Weighted Social Graph

The core innovation lies in treating the Q&A ecosystem as a directed graph where nodes are users and questions. Unlike the original PageRank, which treats all links as equal, this method assigns specific weights based on the quality of the interaction.

1. Semantic Co-occurrence (n-grams)

To ensure an answer is actually relevant to the question, the authors use 2-gram similarity. If an answer shares significant terminology with the question, it receives a higher weight.

2. The Modified PageRank Formula

The reputation () of user is derived from the questions () they answer. The link weight distinguishes between:

  • Selected Best Answers: Weight 0.8 (High trust)
  • Unselected Answers: Weight 0.2 (Low trust, but still a contribution)

Overall Strategy Figure 1: Social network structure between questions and answering users.

Experiments & Evolution

The authors tested their model on the 'GisikiN' portal dataset. The experiment evolved through three stages:

  1. Selection-only Ranking: Identified active users but failed to penalize those who provided many mediocre, unselected answers (User U6 was ranked 6th).
  2. Adding Similarity: Using n-grams helped refine results, boosting relevant experts.
  3. Integrating Recommendations: By adding a "recommended ratio" , the model finally filtered out high-volume/low-quality users entirely.
RankingUser IDReputationSelectionNon-selection
1U10.0114771194
10U120.004326467
(U6, previously 6th, is now purged from the top list)

Experimental Table Figure 2: Final rankings after incorporating recommendation ratios and similarity.

Critical Insight: Why This Works

This approach effectively turns a "Content Ranking" problem into a "Network Trust" problem.

  • Inductive Bias: The model assumes that "Good answers come from good users."
  • Resilience: By assigning a very low weight (0.1) to self-answers, it prevents users from inflating their own reputation through "alt" accounts—a common problem in modern reputation systems.

Conclusion & Future Outlook

This paper provides a robust foundation for building trust-based search engines. While 2-grams are a bit "old school" by today’s LLM standards, the logic of weighted social links remains highly relevant for modern DAO governance and decentralized social protocols (like Lens or Farcaster).

The next step for this research would be replacing n-gram similarity with transformer-based embeddings (like BERT or GPT-4) to better understand the intent beyond mere keyword matching.


Disclaimer: This analysis is based on the academic paper "User Reputation Evaluation Using Co-occurrence Feature and Collective Intelligence".

Find Similar Papers

Try Our Examples

  • Search for recent papers that improve PageRank-based reputation systems in Q&A platforms using Deep Learning based semantic embeddings instead of n-grams.
  • Which paper originally proposed the HITS algorithm by Jon Kleinberg, and how does this paper's question-user link weight strategy differ from the Authority and Hub scores?
  • Explore how these user reputation evaluation methods are being applied to mitigate misinformation and bot activities in modern decentralized social media platforms.
Contents
Beyond Simple Metrics: Mastering User Reputation through Collective Intelligence
1. TL;DR
2. Background: The Limits of Metadata
3. Methodology: A Weighted Social Graph
3.1. 1. Semantic Co-occurrence (n-grams)
3.2. 2. The Modified PageRank Formula
4. Experiments & Evolution
5. Critical Insight: Why This Works
6. Conclusion & Future Outlook