Papers
Topics
Authors
Recent
Search
2000 character limit reached

DEAM Metric: Diverse Domain Applications

Updated 19 February 2026
  • DEAM metric is a suite of rigorously defined measures used in diverse fields—medical imaging, NLP, stochastic optimization, and reinforcement learning—to quantify uncertainty, coherence, and deception.
  • In dual-energy CT imaging, it minimizes a penalized I-divergence to reduce bias and uncertainty in proton stopping-power ratio estimation, significantly impacting treatment planning.
  • For NLP and RL, DEAM evaluates dialogue coherence using AMR-based manipulations and measures policy deceptiveness via entropy, while in optimization it adaptively adjusts momentum to enhance convergence.

The acronym "DEAM" refers to several distinct metrics and methodologies across diverse scientific domains, each with formal mathematical underpinnings and domain-specific applications. The following covers the principal instances in which "DEAM metric" or "DEAM algorithm" is rigorously defined and utilized, spanning dual-energy CT (DECT) for medical imaging, dialogue evaluation in NLP, stochastic optimization, and reinforcement learning for deception.

1. Dual-Energy Alternating Minimization (DEAM) in DECT Imaging

The DEAM metric in medical imaging, particularly for dual-energy computed tomography (DECT), denotes both (1) an objective function minimized during statistical iterative image reconstruction and (2) derived figures of merit for uncertainty quantification—especially in proton stopping-power ratio (SPR) estimation, vital for proton therapy planning (Ge et al., 2021, Ge et al., 2022).

Mathematical Formulation

Let c={c1(x),c2(x)}c = \{c_1(x), c_2(x)\} represent the two basis-material images over voxels xΩx \in \Omega, and dj(y)d_j(y) be measured photon counts at detector yy and energy j{1,2}j \in \{1,2\}. The DEAM objective minimized is: J(c)=I(dg(;c))+R(c)J(c) = I\bigl(d\,\|\,g(\cdot;c)\bigr) + R(c) with the penalized I-divergence (“data-fidelity”) given by

I(dg)=j=12y[dj(y)lndj(y)gj(y;c)dj(y)+gj(y;c)]I\bigl(d\,\|\,g\bigr) = \sum_{j=1}^2 \sum_{y} \Bigl[ d_j(y)\,\ln\frac{d_j(y)}{g_j(y;c)} - d_j(y) + g_j(y;c) \Bigr]

where gj(y;c)g_j(y;c) is the polyenergetic forward model. The regularization term is

R(c)=λi=12xx~Nxw(x,x~)Φ(ci(x)ci(x~))R(c) = \lambda \sum_{i=1}^2 \sum_{x} \sum_{\tilde x \in N_x} w(x,\tilde x) \Phi\bigl(c_i(x) - c_i(\tilde x)\bigr)

with Φ\Phi a Huber-like, edge-preserving potential.

DEAM Metric for Quantitative Image Assessment

The metric quantifies residual bias and uncertainty in SPR estimation:

  • Mean percentage bias in ROI: 100mean[(SPRest(x)SPRtrue(x))/SPRtrue(x)]100 \cdot \mathrm{mean}\bigl[(\mathrm{SPR}_{\mathrm{est}}(x) - \mathrm{SPR}_{\mathrm{true}}(x)) / \mathrm{SPR}_{\mathrm{true}}(x)\bigr].
  • Standard deviation in ROI: 100std[SPRest(x)/SPRtrue(x)]100 \cdot \mathrm{std}\bigl[\mathrm{SPR}_{\mathrm{est}}(x) / \mathrm{SPR}_{\mathrm{true}}(x)\bigr].

Sub-percentage uncertainty (both Bias|\mathrm{Bias}| and SD<1%\mathrm{SD} < 1\%) is considered the clinically relevant target, and convergence of J(c)J(c) is empirically correlated with satisfying this metric (Ge et al., 2021).

Key Applications and Impact

DEAM and its metrics have demonstrated high accuracy for proton SPR mapping, with robust performance even under conditions of metal-induced artifacts when combined with MAR extensions (Ge et al., 2022). CNN-based initialization schemes can accelerate convergence to optimal J(c)J(c) by \sim8×, dramatically reducing clinical run times without compromising uncertainty metrics.

2. DEAM as a Dialogue Coherence Evaluation Metric

The DEAM metric in NLP is a dialogue-level coherence score based on semantic manipulations using Abstract Meaning Representation (AMR) (Ghazarian et al., 2022).

Formal Definition

Given a multi-turn dialogue DD, DEAM computes: SDEAM(D)=P(y=1D)=exp(z1)exp(z0)+exp(z1)S_{\mathrm{DEAM}}(D) = P(y=1\mid D) = \frac{\exp(z_1)}{\exp(z_0) + \exp(z_1)} where [z0,z1][z_0, z_1] are logits from a RoBERTa-large encoder followed by a linear-softmax classifier, representing "incoherent" (z0z_0) and "coherent" (z1z_1) classes. The metric is trained via binary cross-entropy on positive (human) and AMR-manipulated negative dialogues.

AMR-based Manipulation

Negative examples are created by AMR-level perturbations—contradictions, coreference inconsistencies, irrelevancies, and engagement drops—allowing DEAM to robustly distinguish subtle conversational incoherence, beyond what text-level shuffling can identify.

Empirical Performance

DEAM achieves superior correlation with human coherence judgements over prior metrics, with Spearman's ρ\rho reaching 0.47 and 0.55 on major benchmarks—statistically significant outperformance against all tested baselines (Ghazarian et al., 2022).

3. DEAM in Stochastic Optimization: Discriminative Weight on Adaptive Momentum

In optimization, DEAM refers to an algorithmic metric for setting adaptively weighted momentum in stochastic optimization (Bai et al., 2019).

Metric Construction: Discriminative Angle

Let gtg_t be the current gradient and ut1=mt1/v^t1u_{t-1} = m_{t-1}/\sqrt{\hat v_{t-1}} the previous update direction. The "discriminative angle" θt\theta_t is: θt=arccos(ut1gtut1gt)\theta_t = \arccos\left( \frac{u_{t-1}^\top g_t}{\|u_{t-1}\| \|g_t\|} \right) The adaptive momentum weight β1,t\beta_{1,t} is set as: β1,t={sinθt/K+ϵ,θt[0,π/2) 1/K,θt[π/2,π]\beta_{1,t} = \begin{cases} \sin\theta_t/K + \epsilon, & \theta_t \in [0, \pi/2) \ 1/K, & \theta_t \in [\pi/2, \pi] \end{cases} with KK chosen so the expected β1,t\beta_{1,t} matches Adam's default.

Rationale and Impact

The metric enables dynamic attenuation of momentum when the gradient and momentum are misaligned, mitigating error propagation and oscillatory convergence that afflict static momentum schedules. The DEAM update rule includes a backtrack term to partially undo steps when a directional flip is detected.

4. DEAM as an Entropy-Based Metric in Deceptive RL

Within reinforcement learning, the DEAM metric is the entropy of an adversarial observer’s belief over candidate reward functions, used explicitly as a measure and objective of deceptive behavior (Lewis et al., 2023).

Mathematical Definition

Given P(rio)P(r_i\mid \vec o), the observer's posterior over kk reward functions after observing trajectory o\vec o, the DEAM metric is: D(o)=i=1kP(rio)log2P(rio)\mathcal{D}(\vec o) = -\sum_{i=1}^k P(r_i\mid \vec o)\,\log_2 P(r_i\mid \vec o) This entropy serves as the agent’s deceptiveness score: maximizing D(o)\mathcal{D}(\vec o) corresponds to sustaining maximal ambiguity regarding its true reward.

Role in RL Algorithms

The DEAM metric is maximized online by choosing actions that maintain high observer uncertainty, subject to constraints enforcing minimum progress toward the agent’s true goal. The DEAM algorithm generalizes these ideas to continuous-control settings, with empirically validated gains in path cost, sample efficiency, and deception duration compared to previous ambiguity models.

5. Comparative Summary Table

Domain DEAM Metric Definition Application Summary
Medical Imaging (DECT) Penalized I-divergence J(c)J(c), ROI uncertainty metrics Quantifies uncertainty in SPR mapping
NLP Evaluation Softmax probability of dialogue coherence SDEAMS_{\mathrm{DEAM}} Rates dialogue-level coherence
Stochastic Optimization Adaptive momentum via discriminative angle θt\theta_t Reduces error propagation, accelerates convergence
RL Deception Entropy D(o)\mathcal D(\vec o) over observer's reward belief Measures/deploys policy deceptiveness

6. Limitations and Future Directions

Each DEAM metric instance is domain-specific in both theoretical basis and computational implementation:

  • In DECT, the I-divergence metric J(c)J(c) does not directly quantify biological endpoints but is quantitatively aligned with SPR estimation performance; ongoing research targets further reduction of computational cost and improved artifact management (Ge et al., 2021, Ge et al., 2022).
  • The AMR-based DEAM for dialogue evaluation depends on the availability and quality of AMR parsers and may be limited in domains with idiosyncratic semantics (Ghazarian et al., 2022).
  • The discriminative-angle-based DEAM in optimization and the entropy-based DEAM in RL both rely on domain-appropriate hyperparameter selection and assumptions regarding the statistical properties of the update or observer models. Generalizability to adversarial/deceiving observers or partially observable MDPs remains an open line of research (Lewis et al., 2023).

7. Concluding Remarks

The term "DEAM metric" encapsulates a family of rigorously defined, performance-critical metrics spanning medical imaging, NLP, optimization, and RL. In each domain, it embodies an operationalization of accuracy, uncertainty, coherence, or ambiguity that is tightly mapped to the scientific or application goals at hand, underpinned by formal mathematical constructs and empirically validated on challenging benchmarks (Ge et al., 2021, Ge et al., 2022, Ghazarian et al., 2022, Bai et al., 2019, Lewis et al., 2023).

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to DEAM Metric.