---
title: 'Global Scoring Rule: Theory & Applications'
url: https://www.emergentmind.com/topics/global-scoring-rule
type: topic
---

# Global Scoring Rule: Theory & Applications

A global scoring rule—also referred to as a nonlocal scoring rule—assigns a numerical score to a probabilistic forecast based on the entire distribution, not solely on the predicted probability at the observed outcome. Such rules are central to the theory and practice of probabilistic forecast evaluation, encompassing both general frameworks (e.g., $L^2$-kernel-based constructions), and canonical metrics like the Continuous Ranked Probability Score (CRPS), Brier score, and multivariate extensions. In contrast to local scoring rules, global scoring rules are strictly proper but may exhibit undesirable evaluation behavior, lack full interpretability, and are sensitive to transformations. Their structure and implications are critical to applications in statistics, machine learning, and practical domains such as weather prediction, language generation, and risk management.

## 1. Formal Definitions and Locality Principle

Let $Y$ be a random variable taking values in $\mathbb{R}$ or a finite set, and suppose a probabilistic forecast is made in the form of a distribution $P$ (with density or mass function $p(\cdot)$). A scoring rule is a mapping
\[
S(P, y)
\]
where $y$ is the realized outcome. The score is typically interpreted as a loss, with lower values preferable. For probability vectors $p = (p_1,\dots,p_m)$ over finite $X = \{1,\dots,m\}$, the rule $S(p,i)$ evaluates the forecast $p$ on realization $i$.

A scoring rule $S$ is *strictly proper* if, for any distributions $P, Q$, it holds that
\[
\mathbb{E}_{Y \sim Q}[S(P, Y)] \ge \mathbb{E}_{Y \sim Q}[S(Q, Y)]
\]
with equality only when $P = Q$. Thus, strictly proper rules uniquely incentivize reporting the true distribution.

Locality distinguishes between rules based solely on the value $p(y)$ and those depending on the entire forecast. Specifically, $S$ is **local** if $S(P, y) = f(p(y))$ for some function $f$, and **nonlocal (global)** otherwise. For finite $X$, $S(p,i)$ is local if it depends only on $p_i$; otherwise, it is global. Bernardo's theorem states that the logarithmic score is the only strictly proper local scoring rule [2012.12499, 2405.18906].

## 2. Canonical Global Scoring Rules

Several archetypal global (nonlocal) strictly proper scoring rules are widely used:

- **Continuous Ranked Probability Score (CRPS)**: For a CDF $F$, 
  \[
  \mathrm{CRPS}(F, y) = \int_{-\infty}^{\infty} (F(z) - \mathbf{1}\{z \ge y\})^2 dz
  \]
  This score requires integration over the full predictive distribution, not just its value at $y$ [2012.12499].

- **Ranked Probability Score (RPS)**: For categorical variables with $m$ ordered categories:
  \[
  \mathrm{RPS}(F, y) = \sum_{k=1}^m (F_k - \mathbf{1}\{k \ge y\})^2
  \]
  where $F_k = P(X \le k)$. This aggregates information over all categories [2012.12499].

- **Brier Score**: For binary event prediction,
  \[
  \mathrm{Brier}(p, y) = (p - y)^2
  \]
  While simple, the Brier score depends on $p$ and $y$ in their full structure and is not local in $p(y)$ [2012.12499, 2405.18906].

- **Multivariate Generalizations**: The $L^2$-kernel (or mixture) framework constructs strictly proper global rules for multivariate distributions, such as the quadratic score and multivariate CRPS:
  \[
  S_{\mathrm{DQS}}(P, y) = \int_{\mathbb{R}^d} f_P(z)^2 dz - 2 f_P(y)
  \]
  \[
  S_{\mathrm{MCRPS}}(P, y) = \int_{\mathbb{R}^d} (F_P(z)-1\{z\ge y\})^2 dz
  \]
  Here, $f_P$ and $F_P$ are the density and CDF of $P$ [2002.09578].

Further generalizations include the $a$-power and pseudo-spherical scores for finite spaces:
\[
S_\alpha(p,i) = \frac{1}{\alpha-1}[p_i^{\alpha-1} - \|p\|_\alpha^{\alpha-1}], \quad \bar{S}_\alpha(p,i) = \frac{p_i^{\alpha-1}}{\|p\|_\alpha^{\alpha-1}}
\]
with $\alpha > 1$ and $\alpha = 2$ recovering the Brier and spherical scores, respectively [2405.18906].

## 3. Theoretical Properties and Limitations

Global scoring rules, while strictly proper, exhibit several distinctive theoretical features and limitations:

- **Ranking Ambiguity**: Different global strictly proper rules can rank imperfect forecasts differently. For $P_1$, $P_2$ (neither true), it can occur that $\mathbb{E}_Q[S(P_1,Y)] < \mathbb{E}_Q[S(P_2,Y)]$ for one score, and the reverse for another, making unambiguous performance comparison impossible in the absence of the true distribution [2012.12499].

- **Transformation Sensitivity**: Nonlocal scores are generally not invariant under smooth bijective transformations $X \mapsto X^* = \varphi(X)$. The rule’s value and the induced order of forecasters can change under reparameterization:
  \[
  p_X(x) \to p_{X^*}(x^*) = p_X(\varphi^{-1}(x^*)) |d\varphi^{-1}/dx^*|
  \]
  This leads to potential inconsistencies across units or coordinate systems [2012.12499].

- **Unintuitive (“Unfortunate”) Evaluations**: Certain global scores, notably CRPS, may prefer forecasts that assign low probability mass at the realized outcome if other aspects of the distribution (e.g., the median) are favored. For example, CRPS is minimized when the outcome coincides with the predictive median, independent of actual assigned likelihood [2012.12499].

- **Boundedness and Smoothing**: Global rules like Brier and spherical are bounded, which affects their sensitivity to rare events and motivates the use of masked log-score penalties to enforce strict calibration and regularization [2405.18906].

## 4. Global Scoring Rules in Modern Machine Learning

Global strictly proper scoring rules have been adapted for high-dimensional predictive modeling, such as language generation. In these settings, the sample space is exponentially large (e.g., token sequences for language models). The challenge of intractable sequence-level evaluation is addressed by decomposing the global score into token-level components using the autoregressive factorization:
\[
p_\theta(x) = \prod_{t=1}^T p_\theta(x_t \mid x_{<t}), \quad L_s(\theta) \approx -\mathbb{E}_{x\sim q} \sum_{t=1}^T S(p_t, x_t)
\]
where $p_t = p_\theta(\cdot \mid x_{<t})$ [2405.18906].

Empirical studies show that replacing the standard log-likelihood (local score) with global scores (Brier, spherical) in language generation—particularly during fine-tuning—can yield improved BLEU and ROUGE scores in machine translation and summarization. The effect is present across both Transformers and large language models (LLaMA-7B, -13B) [2405.18906]. Score smoothing techniques (convex combinations with uniform or log penalties) are employed to address the specific boundedness of global rules. The findings suggest that models trained with global rules can exhibit greater calibration or desirable tail behavior, though possibly at the cost of slower convergence or different early dynamics.

## 5. The $L^2$-Kernel Framework and Level Set Decomposition

For multivariate distributions, the $L^2$-kernel mixture framework provides a systematic method for constructing global scoring rules:
\[
S(P, y; w, h) = \int_{\mathbb{R}^d} [(f_P * w)(z) - w(z-y)]^2 h(z) dz
\]
where $w$ is a smoothing kernel and $h$ a weight. The divergence between two forecasts $P, Q$ is the $L^2$-distance between their convolved densities, ensuring strict propriety when $w$ and $h$ satisfy certain conditions [2002.09578].

A salient feature is that such global scores admit decomposition—via the layer-cake theorem—into integrals over level-set scores. For any $\alpha > 0$, the function’s $\alpha$-upper level set $L(g;\alpha) = \{z: g(z) \ge \alpha\}$ can be individually scored:
\[
S^\Gamma(A, y; w,h, \alpha) = \int_{\mathbb{R}^d} [\alpha - w(z-y)] 1\{z \in A\} h(z) dz
\]
This decomposition enables targeted evaluation for tasks such as anomaly detection, risk estimation (e.g., CoVaR), and combining forecasts by minimizing convex mixtures of proper scores [2002.09578].

## 6. Comparative Table of Scoring Rule Properties

| Scoring Rule             | Local or Global | Strictly Proper | Invariant under Reparametrization | Direct Probability Interpretation |
|--------------------------|----------------|----------------|------------------------------------|-----------------------------------|
| Logarithmic (Ignorance)  | Local          | Yes            | Yes                                | Yes (bits/info)                   |
| Brier                    | Global         | Yes            | No                                 | No                                |
| CRPS                     | Global         | Yes            | No                                 | No                                |
| Quadratic (L2)           | Global         | Yes            | No                                 | No                                |

The only local, strictly proper rule is the logarithmic score. All others are global, strictly proper, and lack invariance under arbitrary smooth transformations [2012.12499, 2405.18906].

## 7. Practical Implications and Recommendations

Global scoring rules are indispensable for evaluating complex forecasts, supporting applications in forecast combination, probabilistic risk assessment, and multi-output prediction. Nevertheless, reliance on global scores alone can entail ambiguous rankings, lack of robustness to variable transformations, and potentially misleading assessments when evaluated outside their optimum. In domains such as language modeling, consideration of score-specific smoothing and calibration adaptations is critical for bounded global rules.

A consistent recommendation is that the logarithmic score—uniquely local, strictly proper, invariant, and directly interpretable—should always be reported alongside any global score in predictive performance evaluation [2012.12499]. Multi-score evaluation is advocated due to the divergent optimization trajectories and distinct distributional characteristics enforced by different strictly proper rules [2405.18906].

Monte Carlo methods are effective for the approximation of global scores in high-dimensional multivariate forecasting, broadening applicability to areas such as forecast mixing and conditional value-at-risk inference [2002.09578].

In summary, global scoring rules provide flexible, theoretically sound mechanisms for evaluating distributional forecasts beyond the realized outcome, but must be carefully interpreted and accompanied by local (logarithmic) scoring to ensure interpretability, invariance, and robustness.

Source: https://www.emergentmind.com/topics/global-scoring-rule