pointwise ranking
**Pointwise ranking** scores **each item independently** — predicting a relevance score for each item without considering other items, then sorting by scores, the simplest learning to rank approach.
**What Is Pointwise Ranking?**
- **Definition**: Predict relevance score for each item independently.
- **Method**: Regression or classification for each query-item pair.
- **Ranking**: Sort items by predicted scores.
**How It Works**
**1. Training**: Learn function f(query, item) → relevance score.
**2. Prediction**: Score each candidate item independently.
**3. Ranking**: Sort items by scores (highest to lowest).
**Advantages**
- **Simplicity**: Standard regression/classification problem.
- **Scalability**: Score items independently, easily parallelizable.
- **Interpretability**: Clear score meaning.
**Disadvantages**
- **No Relative Comparison**: Doesn't learn which item should rank higher.
- **Score Calibration**: Absolute scores may not be well-calibrated.
- **Ignores List Context**: Doesn't consider position or other items.
**Algorithms**: Linear regression, logistic regression, neural networks, gradient boosted trees.
**Applications**: Search ranking, product ranking, content ranking.
**Evaluation**: RMSE for scores, NDCG/MAP for ranking quality.
Pointwise ranking is **simple but effective** — while it doesn't directly optimize ranking metrics, its simplicity and scalability make it a practical baseline for many ranking applications.