GroExpert: Rethinking Worker Ability via Group-Aware Pairwise Ranking
GroExpert: A Novel Group-Aware Experts Identification Approach in Crowdsourcing
The paper introduces GroExpert, a group-aware experts identification approach for quality control in crowdsourcing. It utilizes a fully connected neural network to implement pairwise ranking, achieving SOTA accuracy—particularly in decision-making tasks where it reached 93.59% accuracy.
TL;DR
Quality control in crowdsourcing has traditionally focused on "who is the best worker overall?" GroExpert flips the script by asking "who is the best worker in this specific group?" By using a deep neural network to rank workers relatively rather than scoring them absolutely, GroExpert achieves significant performance gains across diverse task types, from simple decision-making to complex numeric estimations.
Problem & Motivation: The Fallacy of Absolute Ability
In the world of Amazon Mechanical Turk (AMT), the standard approach to quality is identifying "experts" based on global historical accuracy. However, this suffers from two fatal flaws:
- The Long-Tail Reality: Global experts often don't participate in every task. If your task only attracts mid-tier workers, a global model fails to identify who among them is the most reliable.
- Lack of Context: A worker's performance is often relative. In a group of low-skill spammers, a mediocre worker is an "expert," whereas in a high-skill group, they are the "weak link."
Authors argue that worker ability should be a relative value influenced by the specific dynamics of the task group.
Methodology: The Core of GroExpert
The GroExpert framework operates through a sophisticated blending of individual and group features processed via a Pairwise Ranking Deep Neural Network.
1. Group-Aware Feature Engineering
Instead of just looking at Worker , the model constructs a feature vector that encodes:
- Individual Features: Reputation (historical accuracy) and Quantity Ratio (participation rate).
- Group Context: One-hot encoding that situates the worker within their current "working group" (the set of workers assigned to the same task).

2. The Multi-Objective Loss Function
The brilliance of GroExpert lies in its loss function, which balances two goals:
- Accuracy (): Ensuring the predicted score correlates with the ground truth answer.
- Pairwise Ranking (): Ensuring that if Worker is better than Worker , their scores reflect that specific order. This "Hinge Ranking Loss" allows the model to be fully differentiable while maintaining a focus on relative expertise.

Experiments & Results: Dominating the Baselines
The authors tested GroExpert against four heavyweights: Confusion Matrix (CM), Basic Accuracy, RankSVM, and RankNET.
Key Performance Wins
- Product Dataset: Reached 93.59% accuracy, outperforming the closest neural baseline (RankNET) by nearly 1%.
- Emotions Dataset: This was the most difficult task (numeric estimation). GroExpert crushed the competition with 31.22% accuracy, compared to RankNET's 20.02%—a massive relative improvement.

Sensitivity Analysis
The study found that while the neural network is powerful, it is sensitive to architecture. The best performance for decision tasks occurred at 4 hidden layers and 32 hidden units, suggesting that for crowdsourcing data, "deeper" isn't always "better" due to the risk of overfitting on sparse worker data.
Critical Analysis & Conclusion
Takeaway
GroExpert proves that context is king. By evaluating workers relative to their peers in a task group, we can achieve much higher truth inference accuracy. This has immediate applications for task assignment and automated reward systems in crowdsourcing platforms.
Limitations
The primary limitation is data sparsity. As seen in the "Emotions" and "Face Sentiment" tests, the accuracy fluctuates when the training size is small because the neural network lacks enough pairwise comparisons to generalize perfectly.
Future Outlook
This work sets the stage for "Dynamic Expert Routing," where tasks are not just assigned to the "best" workers, but to the most complementary groups of workers to maximize relative expertise.
