This benchmark evaluates the ability of machine learning models to predict click-through rates (CTR) for advertisements on a large-scale e-commerce platform. It specifically probes how well models capture static user-ad interactions versus dynamic, temporal user behavior sequences to forecast future clicks. Use when the user wants to benchmark on Alibaba's Taobao Advertising Dataset, or asks about evaluating this task. Reports AUC.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill taobao-ctr-prediction-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Taobao Ctr Prediction Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-taobao-ctr-prediction-eval)More formats (shields.io, HTML) on the badges page.
---
name: taobao-ctr-prediction-eval
description: This benchmark evaluates the ability of machine learning models to predict click-through rates (CTR) for advertisements on a large-scale e-commerce platform. It specifically probes how well models capture static user-ad interactions versus dynamic, temporal user behavior sequences to forecast future clicks. Use when the user wants to benchmark on Alibaba's Taobao Advertising Dataset, or asks about evaluating this task. Reports AUC.
metadata:
skill_kind: dataset_eval
source_arxiv: 2511.21963
bibtex_key: yang2025ctrprediction
confidence: medium
---
# taobao-ctr-prediction-eval
> CTR Prediction on Alibaba's Taobao Advertising Dataset Using Traditional and Deep Learning Models — Yang et al. (2025) (arXiv:2511.21963, 2025)
## What this evaluates
This benchmark evaluates the ability of machine learning models to predict click-through rates (CTR) for advertisements on a large-scale e-commerce platform. It specifically probes how well models capture static user-ad interactions versus dynamic, temporal user behavior sequences to forecast future clicks.
## Datasets
- **Alibaba's Taobao Advertising Dataset** — total ?; splits: train (-1), val (-1), test (-1)
## Metrics
- `AUC` **(primary)** — range: [0, 1]
- Area Under the Receiver Operating Characteristic Curve, measuring the probability that a randomly chosen positive instance is ranked higher than a randomly chosen negative instance.
- `Log Loss` — range: [0, ∞)
- Binary cross-entropy loss measuring the divergence between predicted probabilities and actual binary labels.
- `PR AUC` — range: [0, 1]
- Area Under the Precision-Recall Curve, evaluating model performance on imbalanced datasets by focusing on the positive class.
## Input / output format
**Input**: User and ad features including static demographics, ad attributes, and temporal behavioral sequences encoded via embedding layers.
**Output**: A single probability score representing the predicted likelihood of a user clicking on the ad.
## Scoring recipe
```python
def compute_auc(y_true, y_pred):
from sklearn.metrics import roc_auc_score
return roc_auc_score(y_true, y_pred)
def compute_logloss(y_true, y_pred):
from sklearn.metrics import log_loss
return log_loss(y_true, y_pred)
def compute_prauc(y_true, y_pred):
from sklearn.metrics import average_precision_score
return average_precision_score(y_true, y_pred)
```
## Common pitfalls
- Class imbalance in click data requires careful sampling or weighting; ignoring it skews AUC/PR AUC.
- Temporal behavior sequences must be strictly ordered and padded/truncated consistently to avoid data leakage.
- Attention weights in the Transformer model indicate feature importance but do not imply causal relationships.
## Evidence (verbatim from paper)
> Evaluation metrics include AUC, Log Loss, and PR AUC, reflecting ranking accuracy, prediction calibration, and sensitivity to rare clicks.
## Citation
```bibtex
@misc{yang2025ctrprediction,
title={CTR Prediction on Alibaba's Taobao Advertising Dataset Using Traditional and Deep Learning Models},
author={Yang et al. (2025)},
year={2025},
note={arXiv:2511.21963}
}
```
- arXiv: 2511.21963
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!