This benchmark evaluates a model's ability to detect fraudulent user accounts in e-commerce and app review platforms by analyzing their rating patterns and temporal behavior. It probes whether the model can identify users who exhibit extreme rating biases or bursty posting times indicative of coordinated spam or defamation campaigns. Use when the user wants to benchmark on Flipkart, SWM, or asks about evaluating this task. Reports precision@k.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill birdnest-fraud-detection-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Birdnest Fraud Detection Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-birdnest-fraud-detection-eval)More formats (shields.io, HTML) on the badges page.
---
name: birdnest-fraud-detection-eval
description: This benchmark evaluates a model's ability to detect fraudulent user accounts in e-commerce and app review platforms by analyzing their rating patterns and temporal behavior. It probes whether the model can identify users who exhibit extreme rating biases or bursty posting times indicative of coordinated spam or defamation campaigns. Use when the user wants to benchmark on Flipkart, SWM, or asks about evaluating this task. Reports precision@k.
metadata:
skill_kind: dataset_eval
source_arxiv: 1511.06030
bibtex_key: hooi2015birdnest
confidence: high
---
# birdnest-fraud-detection-eval
> BIRDNEST: Bayesian Inference for Ratings-Fraud Detection — Hooi et al. (2015) (arXiv:1511.06030, 2015)
## What this evaluates
This benchmark evaluates a model's ability to detect fraudulent user accounts in e-commerce and app review platforms by analyzing their rating patterns and temporal behavior. It probes whether the model can identify users who exhibit extreme rating biases or bursty posting times indicative of coordinated spam or defamation campaigns.
## Datasets
- **Flipkart** — total 3300000; splits: test (-1)
- **SWM** — total 1100000; splits: test (-1)
## Metrics
- `precision@k` **(primary)** — range: [0, 1]
- Precision@k is calculated as the number of true fraudulent users found in the top-k ranked list divided by k. The paper reports this metric for k values up to 250.
## Input / output format
**Input**: User-level rating histories including product IDs, star ratings (1-5), and timestamps.
**Output**: A continuous suspiciousness score (NEST) for each user, used to rank users from most to least suspicious.
## Scoring recipe
```python
def precision_at_k(rankings, gold_fraud_ids, k):
top_k_users = rankings[:k]
true_positives = sum(1 for u in top_k_users if u in gold_fraud_ids)
return true_positives / k
```
## Common pitfalls
- Ground truth labels are only available for the Flipkart dataset via private investigation by the platform, making independent replication impossible.
- The SWM dataset evaluation is purely qualitative (case studies), so no quantitative metrics are reported for it.
- Precision@k is only evaluated for small k (up to 250), ignoring performance at larger cutoffs or overall ranking quality.
## Evidence (verbatim from paper)
> Figure 1b shows the algorithm's precision at $k$ : for various values of $k$ up to 250: note that precision for the most suspicious users is very high: e.g. precision of 1.0 for the first 50 users.
## Citation
```bibtex
@misc{hooi2015birdnest,
title={BIRDNEST: Bayesian Inference for Ratings-Fraud Detection},
author={Hooi et al. (2015)},
year={2015},
note={arXiv:1511.06030}
}
```
- arXiv: 1511.06030

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!