---
title: Uncertainty Calibration Loss
url: https://www.emergentmind.com/topics/uncertainty-calibration-loss
type: topic
---

# Uncertainty Calibration Loss

Searching arXiv for recent and foundational papers on uncertainty calibration loss.
Uncertainty calibration loss denotes a training or post-hoc objective designed to align a model’s reported uncertainty or confidence with empirical predictive behavior. In the classification setting, the central requirement is that high model confidence should coincide with correct predictions and high uncertainty should coincide with incorrect ones; in regression and structured prediction, analogous objectives target interval coverage, quantile calibration, or agreement between predicted uncertainty and observed residuals. Recent work has formulated uncertainty calibration losses as augmentations of cross-entropy, negative log-likelihood, ELBO-style objectives, quantile losses, and task-specific segmentation or localization losses, often using Expected Calibration Error (ECE), predictive entropy, uncertainty–error alignment, or proper scoring rules as explicit regularizers [2110.03260].

## 1. Definition and scope

Uncertainty calibration differs from raw predictive accuracy. A well-calibrated model should be accurate when it is certain about its prediction and indicate high uncertainty when it is likely to be inaccurate [2012.07923]. In the standard confidence-calibration setting for classification, calibration is commonly assessed by comparing average confidence to average empirical accuracy within bins, yielding metrics such as ECE and MCE [2108.00106]. In uncertainty-centric formulations, the comparison is instead between uncertainty and error, as in Uncertainty Calibration Error (UCE), where bin-wise error is compared to bin-wise uncertainty [2006.11584, 2206.07795].

For binary classifiers, calibration can be formalized through the calibration function \(c(p):=\Pr[Y=1\mid \hat p=p]\), and the \(L_1\) calibration error is
\[
CE_{L_1}=\int_0^1 |c(p)-p|\,dF_{\hat p}(p),
\]
with bucketed ECE as a finite-sample proxy [2512.13872]. This makes calibration a conditional property of a predictor rather than a mere global property of its score distribution. A related decomposition for arbitrary proper losses separates expected loss into a miscalibration term, a grouping term measuring information loss from features to score, and irreducible uncertainty [2603.15232]. This implies that calibration losses target only one component of predictive quality: they reduce reliability error, but do not by themselves eliminate information loss.

Across recent literature, uncertainty calibration losses appear in several forms. Some directly penalize misalignment between confidence and accuracy, such as ECE-regularized or soft-binned objectives [2110.03260, 2108.00106]. Others align uncertainty with observed error via differentiable surrogates, including Accuracy-versus-Uncertainty Calibration (AvUC), CLUE, and related alignment objectives [2012.07923, 2505.22803]. In regression, quantile-based methods separate calibration from sharpness and optimize centered prediction intervals [2011.09588]. In dense prediction and localization, calibration losses are adapted to per-pixel probabilities or Gaussian localization intervals [2506.03942, 2306.08981].

## 2. Hybrid losses based on cross-entropy, entropy, and calibration error

A direct formulation appears in “An Uncertainty-aware Loss Function for Training Neural Networks with Calibrated Predictions” [2110.03260], which proposes two hybrid losses for MC-Dropout by combining cross entropy with predictive entropy (PE) or Expected Calibration Error (ECE). With input \(x\in\mathbb{R}^d\), one-hot label \(y\in\{1\ldots C\}\), network softmax output \(f_W(x)=(p_1,\dots,p_C)\), and standard cross-entropy
\[
L_{CE}(W;x,y)=-\sum_{c=1}^C y_c\log p_c,
\]
the predictive entropy is
\[
PE(x;W)=-\sum_{c=1}^C p_c\log p_c.
\]
Over a batch \(B\) of size \(N\), the mean predictive entropy is
\[
\bar H_{PE}(W;B)=\frac{1}{N}\sum_{i\in B} PE(x_i;W),
\]
and the PE-hybrid objective is
\[
L_{PE}(W;B)=L_{CE}(W;B)+\lambda_{PE}\cdot \bar H_{PE}(W;B).
\]

The ECE-hybrid objective uses max-softmax confidence \(\mathrm{conf}(x)=\max_c p_c\), partitions predictions into \(M\) confidence bins \(\{B_1,\dots,B_M\}\), defines
\[
\mathrm{acc}(B_m)=\frac{1}{|B_m|}\sum_{i\in B_m}\mathbf{1}(\hat y_i=y_i),\qquad
\mathrm{conf}(B_m)=\frac{1}{|B_m|}\sum_{i\in B_m}\max_c p_c(x_i),
\]
and computes
\[
ECE(B;W)=\sum_{m=1}^M \frac{|B_m|}{N}\,|\mathrm{acc}(B_m)-\mathrm{conf}(B_m)|.
\]
The corresponding batch objective is
\[
L_{ECE}(W;B)=L_{CE}(W;B)+\lambda_{ECE}\cdot ECE(B;W).
\]

The stated role of the terms is explicit. \(L_{CE}\) enforces correct class discrimination. \(\bar H_{PE}\) adds a penalty proportional to the average predictive entropy; by minimizing it jointly with CE, the network is encouraged to assign lower entropy to easy examples and, indirectly, higher entropy where CE is high. \(ECE(B;W)\) directly measures miscalibration as the bin-weighted \(|\mathrm{confidence}-\mathrm{accuracy}|\) gap, so adding it as a loss term pushes the optimizer to reduce reliability error [2110.03260].

Related training-time calibration penalties generalize this pattern. “Calibration-Aware Bayesian Learning” augments the variational free-energy objective of Bayesian neural networks with a differentiable approximation of ECE, termed WMMCE or AECE:
\[
\mathcal{F}^{CA}(\varphi\mid\mathcal D)
=
\mathbb E_{\theta\sim q(\theta\mid\varphi)}
\Bigl[
\mathcal L(\theta\mid\mathcal D)+\lambda\,AECE(\theta\mid\mathcal D)
\Bigr]
+
\beta\,KL\bigl(q(\theta\mid\varphi)\|p(\theta)\bigr).
\]
This combines a data-independent regularizer \( \beta KL(q\|p)\) with a data-dependent calibration term \( \lambda \mathbb E_q[AECE]\), explicitly trading off prior adherence against miscalibration penalties [2305.07504].

A more recent single-loss construction is Socrates Loss, which augments a \(c\)-way classifier with an auxiliary unknown class \(\mathrm{idk}\), an adaptive target \(t_{i,y_i,e}\), and a dynamic uncertainty penalty
\[
\beta_{i,e}=\max_{\bar y\neq y_i}\bigl[\hat p_{i,\bar y,e}-\hat p_{i,\mathrm{idk},e}\bigr],
\]
leading to
\[
\mathcal L_{\mathrm{Soc},e}
=
-\frac{1}{n}\sum_{i=1}^n
(1-\hat p_{i,y_i,e})^\gamma
\Bigl[
t_{i,y_i,e}\ln \hat p_{i,y_i,e}
+
\beta_{i,e}(1-t_{i,y_i,e})\ln \hat p_{i,\mathrm{idk},e}
\Bigr].
\]
This formulation is explicitly intended to optimize classification and confidence calibration simultaneously [2604.12245].

## 3. Differentiable surrogates for calibration-sensitive optimization

A major obstacle in calibration-aware learning is that hard-binned ECE and related estimators are piecewise-constant and have zero gradients almost everywhere. “Soft Calibration Objectives for Neural Networks” addresses this by replacing hard bin indicators with smooth membership weights
\[
w_b(c)=\frac{\exp(g_b(c))}{\sum_{k=1}^B \exp(g_k(c))},\qquad
g_b(c)=-(c-\xi_b)^2/T,
\]
where \(\xi_b\) is the midpoint of bin \(b\). Using \(w_{i,b}=w_b(c_i)\), one defines soft bin counts and averages,
\[
S_b^{soft}=\sum_{i=1}^N w_{i,b},\qquad
conf_b^{soft}=\frac{1}{S_b^{soft}}\sum_{i=1}^N w_{i,b}c_i,\qquad
acc_b^{soft}=\frac{1}{S_b^{soft}}\sum_{i=1}^N w_{i,b}a_i,
\]
and then the soft-binned ECE loss
\[
L_{soft-ECE}
=
\sum_{b=1}^B \frac{S_b^{soft}}{N}\,|acc_b^{soft}-conf_b^{soft}|.
\]
The total training objective becomes
\[
L_{total}=L_{CE}+\lambda\cdot L_{soft-ECE}.
\]
This preserves the semantics of calibration-error minimization while permitting end-to-end backpropagation [2108.00106].

A different differentiable construction is AvUC, which starts from the desideratum that a model should maximize the fraction of predictions that are either accurate and certain or inaccurate and uncertain. With top-prediction confidence \(p_i\), predictive uncertainty \(u_i\), and soft proxies
\[
\tilde n_{AC}=\sum_{i=1}^B p_i(1-\tanh(u_i)),\qquad
\tilde n_{AU}=\sum_{i=1}^B p_i\tanh(u_i),
\]
\[
\tilde n_{IC}=\sum_{i=1}^B (1-p_i)(1-\tanh(u_i)),\qquad
\tilde n_{IU}=\sum_{i=1}^B (1-p_i)\tanh(u_i),
\]
the relaxed AvU score is
\[
\widetilde{AvU}=\frac{\tilde n_{AC}+\tilde n_{IU}}
{\tilde n_{AC}+\tilde n_{AU}+\tilde n_{IC}+\tilde n_{IU}},
\]
and the AvUC loss is
\[
\mathcal L_{AvUC}
=
-\log(\widetilde{AvU})
=
\log\Bigl(1+\frac{\tilde n_{AU}+\tilde n_{IC}}{\tilde n_{AC}+\tilde n_{IU}}\Bigr).
\]
In a Bayesian model it is added to the negative ELBO as
\[
\mathcal L
=
\mathcal L_{ELBO}+\beta\,\mathcal L_{AvUC}.
\]
This directly couples uncertainty magnitude with predictive correctness rather than with confidence alone [2012.07923].

CLUE generalizes the same principle through uncertainty–error alignment. For per-sample uncertainty \(u_i\) and error proxy \(e_i=L_e(y_i,\hat y_i)\), it introduces either an instance-level penalty
\[
\mathcal L_{calib}^{inst}=\frac1N\sum_{i=1}^N (e_i-u_i)^2
\]
or a moment-matching penalty
\[
\mathcal L_{calib}^{mom}
=
w_1(\bar e-\bar u)^2+w_2(\mathrm{Var}_e-\mathrm{Var}_u)^2,
\]
with full objective
\[
\mathcal L_{CLUE}
=
\alpha\,\mathcal L_e
+
(1-\alpha)\,[\mathcal L_{calib}^{inst}\ \text{or}\ \mathcal L_{calib}^{mom}].
\]
This is explicitly bin-free, fully differentiable, and domain-agnostic [2505.22803].

A gradient-centric alternative is BSCE-GRA, which weights the gradient of cross-entropy by the sample-wise Brier Score
\[
u_{BS}(p,y)=\sum_{i=1}^K (p_i-y_i)^2.
\]
Rather than multiplying the loss by a differentiable uncertainty term, it detaches the Brier weight so that
\[
\frac{\partial L_{BSCE\text{-}GRA}}{\partial \theta}
=
u_{BS}(p,y)\,\frac{\partial L_{CE}}{\partial \theta},
\]
implemented via
\[
L_{BSCE\text{-}GRA}(p,y)
=
-
[u_{BS}(p,y)]_{stopgrad}\sum_{i=1}^K y_i\log p_i.
\]
The stated motivation is that existing loss-weighting methods can mis-align gradient magnitudes with sample uncertainty, while full-simplex Brier weighting provides a more precise uncertainty estimate than a single-logit weighting factor [2503.22725].

## 4. Task-specific uncertainty calibration losses

In regression, “Beyond Pinball Loss” introduces a calibration-only objective for a nominal quantile level \(p\) with model output \(\hat q_p(x)\), based on observed coverage
\[
\hat p_p=\frac1N\sum_{i=1}^N \mathbf 1\{y_i\le \hat q_p(x_i)\},
\]
and the piecewise calibration loss
\[
\mathcal C(D,\hat q_p,p)=
\begin{cases}
\frac1N\sum_{i=1}^N (y_i-\hat q_p(x_i))\mathbf 1\{y_i>\hat q_p(x_i)\}, & \hat p_p<p,\\[0.8em]
\frac1N\sum_{i=1}^N (\hat q_p(x_i)-y_i)\mathbf 1\{\hat q_p(x_i)>y_i\}, & \hat p_p>p,\\[0.4em]
0, & \hat p_p=p.
\end{cases}
\]
To discourage overly wide intervals, it adds a sharpness penalty
\[
\mathcal P(D,p)=\frac1N\sum_{i=1}^N |\hat q_{1-p}(x_i)-\hat q_p(x_i)|,
\]
and combines them as
\[
\mathcal L(D,\{\hat q_p\},\lambda)
=
(1-\lambda)\,\mathbb E_{p\sim Unif(0,1)}\,\mathcal C
+
\lambda\,\mathbb E_{p\sim Unif(0,1)}\,\mathcal P.
\]
An alternative proper scoring rule is the Winkler interval score
\[
S_\alpha(\ell,u;y)
=
(u-\ell)
+
\frac{2}{\alpha}(\ell-y)\mathbf 1\{y<\ell\}
+
\frac{2}{\alpha}(y-u)\mathbf 1\{y>u\},
\]
optimized over centered intervals [2011.09588].

For object localization with Gaussian-modeled outputs \((\mu_i,\sigma_i)\), calibration is defined through interval coverage: at nominal confidence \(\alpha\), the fraction of ground-truth offsets \(y_i^*\) within
\[
[\mu_i-z_\alpha \sigma_i,\ \mu_i+z_\alpha \sigma_i]
\]
should equal \(\alpha\). Post-hoc calibration is then posed as either factor scaling \(\sigma_i\mapsto s\,\sigma_i\), fitted by losses such as
\[
RMSUE(s)=\sqrt{\frac1N\sum_{i=1}^N (\Delta_i-s\sigma_i)^2},
\qquad
MAUE(s)=\frac1N\sum_{i=1}^N |\Delta_i-s\sigma_i|,
\]
or isotonic regression
\[
r^*=\arg\min_{r\ \text{nondecr.}}\sum_{i=1}^N w_i(\Delta_i-r(\sigma_i))^2,
\]
where \(\Delta_i=|y_i^*-\mu_i|\) [2306.08981].

Medical image segmentation has motivated per-image calibration losses. The marginal \(L_1\) Average Calibration Error is
\[
mL_1\text{-ACE}
=
\frac{1}{C\,M}\sum_{c=1}^C\sum_{m=1}^M |o_m^c-e_m^c|,
\]
where \(e_m^c\) is the average predicted probability and \(o_m^c\) the observed frequency in bin \(m\) for class \(c\). Hard-binning uses the square-kernel membership
\[
\psi_m^{hard}(x)=
\begin{cases}
1,& b_{m-1}\le x<b_m,\\
0,& \text{otherwise},
\end{cases}
\]
while soft-binning uses the triangular kernel
\[
\psi_m^{soft}(x)=\max\{0,\ 1-M|x-\beta_m|\}.
\]
The overall loss is
\[
\mathcal L=\mathcal L_{DSC}+\mathcal L_{CE}+\lambda_{ACE}\,mL_1\text{-ACE},
\]
with all three terms given equal weight in the reported experiments [2506.03942].

Robot perception introduces a batch-level calibration view. In \(f\)-Cal, the model predicts parameters \(\phi_i\) of a density \(s(y;\phi_i)\), applies a canonicalizing transform \(z_i=g(y_i,\phi_i)\), and asks that the empirical batch distribution \(P_z=\frac1N\sum_i\delta_{z_i}\) match a known target distribution \(Q\). For Gaussian residuals,
\[
z_i=\frac{y_i-\mu_i}{\sigma_i},
\]
and sums of squared residuals yield \(q_h=\sum_{j=1}^K z_{i_j}^2\), which should follow \(\chi_K^2\). Calibration is enforced by an \(f\)-divergence \(D_f(P_q\|Q)\), such as the KL divergence between fitted Gaussian moments or the 2-Wasserstein distance, combined with NLL:
\[
\mathcal L=(1-\lambda)R_{NLL}+\lambda\,\mathcal L_{cal}.
\]
The stated insight is that calibration is only achieved by imposing constraints across multiple examples, such as those in a mini-batch [2109.13913].

## 5. Bayesian, epistemic, and decision-aware formulations

In Bayesian neural networks, uncertainty calibration loss is frequently integrated into variational inference rather than appended to deterministic training alone. The calibration-aware free energy described above is one example [2305.07504]. A related but distinct decision-theoretic approach appears in “On Calibrated Model Uncertainty in Deep Learning,” which extends loss-calibrated Bayesian inference to dropweights-based BNNs by optimizing expected utility over the model posterior. With utility \(u(y,h)\ge 0\), the paper defines
\[
\mathcal L_{calib}(\theta,h)
=
-
\mathbb E_{q(w\mid \theta)}
\Bigl[
\log\Bigl(\sum_{c=1}^C p(y=c\mid w,x)\,u(y=c,h)\Bigr)
\Bigr]
\]
and minimizes
\[
J(\theta,h)
=
-
\mathbb E_{q(w\mid \theta)}[\log p(D\mid w)]
+
KL(q(w\mid \theta)\|p(w))
+
\alpha\,\mathcal L_{calib}(\theta,h).
\]
Here calibration is defined relative to task-specific risk rather than solely to confidence–accuracy agreement [2206.07795].

Epistemic uncertainty introduces an additional complication: calibration depends on the approximation of the posterior itself. “On the Calibration of Epistemic Uncertainty” states two formal requirements for epistemic uncertainty: it should decrease when the training dataset gets larger and it should increase when model expressiveness grows. The paper argues that standard approximate posteriors can violate both requirements and proposes the conflictual loss for Deep Ensembles. For ensemble member \(\theta_c\) associated with class \(c\),
\[
\mathcal L_{conflict}(\theta_c)
=
-
\sum_{(x_i,y_i)\in D}
\Bigl[
\log p(y_i\mid x_i,\theta_c)
+
\lambda\,\log p(c\mid x_i,\theta_c)
\Bigr].
\]
The additional class-specific term is intended to enforce disagreement among ensemble members in the low-data regime, thereby restoring the stated epistemic-uncertainty principles without sacrificing performance or calibration [2407.12211].

A theoretical perspective on why such objectives remain partial appears in the proper-loss decomposition of expected risk. For a score \(S=s(X)\), conditional law \(C=\Pr(Y\in\cdot\mid S)\), and feature-level law \(Q=\Pr(Y\in\cdot\mid X)\),
\[
\mathbb E[\ell(S,Y)]
=
\mathbb E[d_\ell(S,C)]
+
\mathbb E[d_\ell(C,Q)]
+
\mathbb E[\mathcal E_\ell(Q)].
\]
In this three-term identity, the first term is miscalibration, the second is grouping or information loss, and the third is irreducible uncertainty. A plausible implication is that a model can exhibit a nearly ideal reliability diagram while still suffering from substantial grouping loss [2603.15232].

## 6. Metrics, empirical behavior, and reported effects

The literature evaluates uncertainty calibration losses with overlapping but distinct metrics. Confidence-based studies use ECE, MCE, reliability diagrams, weighted ECE, AdaptiveECE, and Classwise-ECE [2108.00106, 2604.12245]. Uncertainty-based studies use UCE and MUCE, where error is compared against predictive entropy or another uncertainty summary within bins [2006.11584, 2206.07795]. Regression uses adversarial-group calibration error, ENCE, AUSE, interval width, and interval coverage [2011.09588, 2505.22803]. Segmentation studies emphasize ACE, MCE, and dataset reliability histograms, because ECE proved relatively insensitive in that setting [2506.03942].

Several recurring empirical patterns are reported. In the MC-Dropout hybrid-loss study, both PE-loss and ECE-loss improve uncertainty calibration relative to plain MC-Dropout, and the PE-based loss yields the largest separation between predictive-entropy distributions of correct and incorrect predictions on the two-moon benchmark, with distance \(0.401\) versus \(0.358\) for standard MC-Dropout, while maintaining comparable accuracy [2110.03260]. The same work reports that both hybrid losses dominate standard MC-Dropout in UA curves and push ECE down by approximately \(10\)–\(20\%\) relative to plain MC-Dropout.

Soft calibration objectives report state-of-the-art single-model ECE across multiple datasets with less than \(1\%\) decrease in accuracy, including an \(82\%\) reduction in ECE and a \(0.7\%\) relative decrease in accuracy relative to a cross-entropy baseline on CIFAR-100 [2108.00106]. AvUC reports the lowest ECE and UCE under heavy shifts and improved separation of in-vs-out entropy densities for OOD and shift detection [2012.07923]. BSCE-GRA reports the lowest pre- and post-temperature-scaling ECE on CIFAR-10, CIFAR-100, and Tiny-ImageNet among the compared losses, often with optimal temperature close to \(1\) [2503.22725].

In Bayesian settings, calibration-aware BNNs are reported to achieve the lowest ECE of the compared methods, up to a \(2\%\) absolute reduction in weighted ECE compared to CA-FNN, while maintaining or slightly improving accuracy [2305.07504]. In the dropweights-based BNN study for Covid-19 X-ray classification, loss-calibrated training reduces MUCE from \(3.77\) to \(1.91\) while improving accuracy from \(70.1\%\) for the standard BNN to \(80.9\%\) for the loss-calibrated BNN; ECE does not improve as much as MUCE, which the authors relate to the prioritization of utility [2206.07795].

Task-specific calibration losses show analogous trade-offs. Quantile-based calibration losses reduce ECE by \(30\)–\(70\%\) relative to SQR on 8 UCI datasets, with an approximately \(10\)–\(20\%\) increase in average interval width, and improve calibration on a 468-dimensional nuclear-fusion dynamics problem by \(40\)–\(60\%\) in ECE relative to SQR [2011.09588]. For localization, isotonic regression and factor scaling reduce validation ECE by over an order of magnitude without degrading AP, mIoU, or RMSE; on KITTI validation, uncalibrated ECE is approximately \(0.384\), best factor scaling yields approximately \(0.047\), and isotonic regression reaches approximately \(0.025\) [2306.08981]. In medical image segmentation, soft mL\(_1\)-ACE achieves the largest reduction in macro-ACE and micro-ACE but incurs a small Dice drop, whereas hard mL\(_1\)-ACE preserves DSC more closely while giving weaker calibration improvement [2506.03942].

## 7. Practical considerations, limitations, and interpretation

Most uncertainty calibration losses introduce an explicit trade-off parameter. Examples include \(\lambda_{PE}\) and \(\lambda_{ECE}\) in MC-Dropout hybrid losses [2110.03260], \(\lambda\) in calibration–sharpness quantile optimization [2011.09588], \(\lambda\) in soft-ECE or CA-BNN objectives [2108.00106, 2305.07504], \(\alpha\) in CLUE and loss-calibrated variational inference [2505.22803, 2206.07795], and \(\lambda_{ACE}\) in segmentation [2506.03942]. Across formulations, increasing the calibration term typically improves alignment between predicted uncertainty and empirical behavior, but may widen intervals, smooth probabilities, or incur a slight drop in raw predictive performance.

Another recurring issue is whether calibration should be imposed during training or post hoc. Training-time methods directly shape internal representations and can improve calibration under dataset shift [2108.00106, 2012.07923]. Post-hoc methods such as temperature scaling, vector scaling, auxiliary logit scaling, factor scaling, and isotonic regression are simpler and often effective, but they leave the original predictive model unchanged [2006.11584, 2306.08981]. The information-level decomposition suggests a limitation of post-hoc recalibration: it can only eliminate the miscalibration term associated with the score, not the grouping term arising from information loss in the mapping \(X\to S\) [2603.15232].

A further limitation is that not all uncertainty notions admit the same objective basis. Aleatoric uncertainty can often be anchored to residual distributions, coverage frequencies, or interval probabilities [2109.13913, 2306.08981]. Epistemic uncertainty is harder to calibrate objectively because it depends on the prior, and recent work emphasizes paradoxes in standard approximations alongside regularizers intended to restore formal requirements [2407.12211]. This suggests that “uncertainty calibration loss” is not a single method but a family of objectives whose form depends on whether the target quantity is confidence, predictive entropy, interval coverage, residual scale, mutual information, or uncertainty–error alignment.

In practical use, several recommendations recur. Batch-wise computation is common for PE, ECE, soft-ECE, AvUC, CLUE, and \(f\)-Cal [2110.03260, 2108.00106, 2012.07923, 2505.22803, 2109.13913]. Validation-based tuning of trade-off parameters is standard [2011.09588, 2305.07504]. Some works recommend warm-starting with the standard prediction loss and then fine-tuning with the calibration term [2505.22803]. Others combine training-time calibration with a final post-hoc temperature-scaling step when finer calibration is required [2110.03260, 2407.12211]. Taken together, these results indicate that uncertainty calibration loss is best understood as a structured regularization principle: it augments predictive learning with explicit penalties that force uncertainty, confidence, or interval statements to track observed predictive reliability as closely as the modeling assumptions allow.

Source: https://www.emergentmind.com/topics/uncertainty-calibration-loss