Papers
Topics
Authors
Recent
Search
2000 character limit reached

Combined Alignment Score (CAS) Overview

Updated 10 July 2026
  • Combined Alignment Score (CAS) is a composite metric that summarizes alignment quality by merging various signals, error channels, and normalization factors.
  • It is applied across diverse domains such as neural word alignment, pose estimation, and sequence analysis, often using task-specific evaluation methods.
  • Research highlights that design choices like aggregation operators and thresholding significantly impact CAS performance in both training and final evaluation.

Combined Alignment Score (CAS) denotes, in the broadest sense, a scalar intended to summarize alignment quality by combining multiple alignment signals, error channels, or normalization factors. Across the cited arXiv literature, however, the term is not used uniformly. Several alignment papers do not define CAS at all and instead evaluate alignment with task-specific quantities such as note-level FalignF_{\text{align}}, Sum-of-Pairs (SP), beat-accuracy thresholds, or human-calibrated scalar ratings (Chang et al., 16 Jul 2025, Shehab et al., 2017, Takano et al., 6 Jan 2026). Other papers introduce explicit combined alignment-style metrics, such as the Pose Alignment Score (PAS) or the Clinical Alignment Score, while still not using CAS to mean “Combined Alignment Score” (Lee et al., 2024, Chung et al., 12 May 2026). This suggests that CAS is best understood as an umbrella notion for combined alignment evaluation rather than as a single standardized metric.

1. Terminological status in the literature

In several recent alignment papers, CAS is explicitly absent. The music-analysis framework RUMAA does not define or report CAS; its closest alignment metric is repeat-aware note-level FalignF_{\text{align}} with a ±50\pm 50 ms onset tolerance and an adaptation in which repeated notes are counted independently (Chang et al., 16 Jul 2025). The multiple-sequence method PoMSA likewise does not define CAS; its reported “alignment score” is SP score on BAliBASE, OXBench, and SMART (Shehab et al., 2017). The audio–text system SPO-CLAPScore predicts a scalar alignment score calibrated to human ratings, but does not introduce a metric called CAS (Takano et al., 6 Jan 2026). The diffusion post-training method AGSM also does not define CAS, instead using an intrinsic alignment reward, a Plackett–Luce alignment probability, and several separate evaluation metrics such as ImageReward, CLIP, PickScore, HPSv2, and GenEval submetrics (Lee et al., 28 May 2026).

The acronym itself is also overloaded. In CAS-IQA, “CAS” stands for Contrast-free Angiography Synthesis rather than any form of combined alignment score, and the paper predicts three separate quality targets—Vessel Morphology Consistency (VMC), Vessel Branch Detection (VBD), and Overall Quality (OQ) (Wang et al., 23 May 2025). In CRAFT, by contrast, CAS is an explicit metric name, but it means Clinical Alignment Score rather than Combined Alignment Score (Chung et al., 12 May 2026). This corpus-level pattern suggests that one must distinguish carefully between a genuine combined metric, a task-specific scalar alignment score, and an acronym collision.

2. Aggregated alignment evidence in neural word alignment

One of the clearest CAS-like constructions appears in neural word alignment through score aggregation. For a sentence pair (e,f)(\mathbf e,\mathbf f), the model defines a local source–target score

s(i,j)=nete([e]idwine)netf([f]jdwinf),s(i,j)=\mathrm{net}_e([\mathbf e]_i^{d^e_{\mathrm{win}}})\cdot \mathrm{net}_f([\mathbf f]_j^{d^f_{\mathrm{win}}}),

then combines all source-side scores for target word eie_i into an aggregated matching score

saggr(i,f)=aggrj=1fs(i,j).s_{\mathrm{aggr}}(i,\mathbf f)=\mathrm{aggr}_{j=1}^{|\mathbf f|} s(i,j).

The paper studies three aggregation operators—Sum, Max, and LogSumExp (LSE)—with

saggr(i,f)=1rlog(j=1fers(i,j)),s_{\mathrm{aggr}}(i,\mathbf f)=\frac{1}{r}\log\left(\sum_{j=1}^{|\mathbf f|} e^{r\,s(i,j)}\right),

and reports that LSE performs best on all datasets, using r=1r=1 in experiments (Legrand et al., 2016).

This aggregated score is used only during unsupervised training. The soft-margin objective is

L(e+,e,f)=i+=1e+log ⁣(1+esaggr(i+,f))+i=1elog ⁣(1+e+saggr(i,f)).{\cal L}(\mathbf e^+,\mathbf e^-,\mathbf f) = \sum_{i^+=1}^{|\mathbf e^+|} \log\!\left(1+e^{-s_{\mathrm{aggr}}(i^+,\mathbf f)}\right) + \sum_{i^-=1}^{|\mathbf e^-|} \log\!\left(1+e^{+s_{\mathrm{aggr}}(i^-,\mathbf f)}\right).

At inference time, aggregation is removed; decoding reverts to the pairwise score FalignF_{\text{align}}0, followed by thresholding

FalignF_{\text{align}}1

and bidirectional symmetrization. In CAS terms, this is a combined training-side score rather than a final evaluation metric.

The paper’s empirical role for aggregation is explicit. LSE substantially outperforms Max and Sum in AER on all tested language pairs, and the resulting model improves over Fast Align by FalignF_{\text{align}}2 AER on English–Czech, FalignF_{\text{align}}3 AER on Romanian–English, and FalignF_{\text{align}}4 AER on English–French (Legrand et al., 2016). A plausible implication is that, when CAS is interpreted as a combined latent-alignment score, the most relevant design choice is not merely what is aggregated, but how softly evidence from multiple candidate alignments is fused.

3. Explicit combined metrics for pose alignment

The most explicit evaluation-side analogue of CAS in the cited corpus is the pose-alignment metric family composed of Translation Alignment Score (TAS), Rotation Alignment Score (RAS), and Pose Alignment Score (PAS). TAS is computed by first defining a geometric scale

FalignF_{\text{align}}5

then robustly aligning estimated camera centers to ground truth, computing cumulative frequencies over thresholds FalignF_{\text{align}}6, and normalizing

FalignF_{\text{align}}7

RAS is defined analogously for angular thresholds FalignF_{\text{align}}8,

FalignF_{\text{align}}9

and PAS is the arithmetic mean

±50\pm 500

The authors also note a weighted-average interpretation ±50\pm 501 with ±50\pm 502 for PAS (Lee et al., 2024).

The construction is notable because translation and rotation are evaluated separately and only then fused. PAS is therefore not a joint ±50\pm 503 path cost, but a post hoc combined score. The paper argues that TAS and RAS are robust to outliers because they are based on robust alignment procedures and on normalized sums of cumulative frequencies rather than mean or RMS residuals. It also claims that TAS handles collinear motion better than mAA because it measures aligned pointwise distance errors rather than angular errors between camera pairs (Lee et al., 2024).

Within the cited literature, PAS is the cleanest example of a metric that functions as a combined alignment score without using that exact name. Its structure—separate primitive alignment scores, normalized to ±50\pm 504, followed by equal-weight averaging—is a recurring template later echoed in clinical alignment scoring.

4. Normalized and structural composite scores in sequence alignment

In multiple sequence alignment, the paper on normalized MSA defines three explicit ratio criteria that are directly relevant to any formal CAS design: ±50\pm 505 and

±50\pm 506

These criteria differ in the denominator: global alignment length for ±50\pm 507, per-pair induced alignment lengths for ±50\pm 508, and total induced pairwise alignment mass for ±50\pm 509 (Araujo et al., 2021).

The paper proves that (e,f)(\mathbf e,\mathbf f)0 is NP-complete for each (e,f)(\mathbf e,\mathbf f)1, gives exact dynamic-programming algorithms for all three, and provides a 12-approximation for (e,f)(\mathbf e,\mathbf f)2 under a restricted scoring-matrix class (Araujo et al., 2021). It also shows by example that the optimal alignment under one normalized criterion need not be optimal under another. This makes denominator choice substantive rather than cosmetic. If CAS is understood as a combined similarity–length objective, (e,f)(\mathbf e,\mathbf f)3 is the most direct sum-of-normalized-pairs instantiation; if it is understood as a single global ratio, (e,f)(\mathbf e,\mathbf f)4 and (e,f)(\mathbf e,\mathbf f)5 are simpler alternatives. This is an inference from the formal definitions rather than an explicit endorsement by the paper.

A different composite scheme appears in RNA secondary-structure alignment with coaxial helical stacking. CHSalign aligns ordered labeled trees whose nodes are helices, junctions, and hairpin loops. For junction nodes, the local score is

(e,f)(\mathbf e,\mathbf f)6

with (e,f)(\mathbf e,\mathbf f)7 fixed in experiments and values (e,f)(\mathbf e,\mathbf f)8 reported to work well (Hua et al., 2016). This score then enters a tree-structured dynamic program over subtrees and forests. CHSalign therefore supplies a raw composite alignment score built from local structural similarity, topology compatibility, and CHS agreement, and it is intended to yield a high score for RNAs with similar CHS motifs or helical arrangement patterns and a low score otherwise.

By contrast, PoMSA is an important counterexample. Despite repeated references to “higher alignment score,” the paper’s actual evaluation metric is only SP score, and it does not define CAS, TC score, Total Column score, or any benchmark-specific combined score (Shehab et al., 2017). This contrast underscores that “alignment score” in the literature is often generic unless a paper specifies the composition explicitly.

5. Music and audio alignment metrics closest to CAS

In score–performance alignment, RUMAA is explicit that CAS is absent. The model instead produces a strict one-to-one alignment through three synchronized streams: (e,f)(\mathbf e,\mathbf f)9 for score-aligned performance transcription, s(i,j)=nete([e]idwine)netf([f]jdwinf),s(i,j)=\mathrm{net}_e([\mathbf e]_i^{d^e_{\mathrm{win}}})\cdot \mathrm{net}_f([\mathbf f]_j^{d^f_{\mathrm{win}}}),0 for performance-aligned score conversion, and s(i,j)=nete([e]idwine)netf([f]jdwinf),s(i,j)=\mathrm{net}_e([\mathbf e]_i^{d^e_{\mathrm{win}}})\cdot \mathrm{net}_f([\mathbf f]_j^{d^f_{\mathrm{win}}}),1 for edit operation tagging, with Insert, Delete, Match, Repeat, and a skip token “-”. When a note exists in only one modality, the model emits the exclusive placeholder token s(i,j)=nete([e]idwine)netf([f]jdwinf),s(i,j)=\mathrm{net}_e([\mathbf e]_i^{d^e_{\mathrm{win}}})\cdot \mathrm{net}_f([\mathbf f]_j^{d^f_{\mathrm{win}}}),2 in the opposite stream so that both streams remain perfectly aligned event by event (Chang et al., 16 Jul 2025). This aligned notewise sequence is the model’s alignment substrate.

Evaluation is performed with note-level s(i,j)=nete([e]idwine)netf([f]jdwinf),s(i,j)=\mathrm{net}_e([\mathbf e]_i^{d^e_{\mathrm{win}}})\cdot \mathrm{net}_f([\mathbf f]_j^{d^f_{\mathrm{win}}}),3, defined in prose as counting matched note pairs and inserted/deleted notes as true positives, unmatched predicted notes as false positives, and missing ground-truth notes as false negatives, under a s(i,j)=nete([e]idwine)netf([f]jdwinf),s(i,j)=\mathrm{net}_e([\mathbf e]_i^{d^e_{\mathrm{win}}})\cdot \mathrm{net}_f([\mathbf f]_j^{d^f_{\mathrm{win}}}),4 ms onset tolerance. Because the original metric was designed for symbolic alignment tasks without repetitions, RUMAA redefines repeated notes to be counted independently (Chang et al., 16 Jul 2025). On the revised Vienna dataset, RUMAA reports s(i,j)=nete([e]idwine)netf([f]jdwinf),s(i,j)=\mathrm{net}_e([\mathbf e]_i^{d^e_{\mathrm{win}}})\cdot \mathrm{net}_f([\mathbf f]_j^{d^f_{\mathrm{win}}}),5 s(i,j)=nete([e]idwine)netf([f]jdwinf),s(i,j)=\mathrm{net}_e([\mathbf e]_i^{d^e_{\mathrm{win}}})\cdot \mathrm{net}_f([\mathbf f]_j^{d^f_{\mathrm{win}}}),6 both without repeats and with repeats, whereas baselines on repeated scores collapse to the range s(i,j)=nete([e]idwine)netf([f]jdwinf),s(i,j)=\mathrm{net}_e([\mathbf e]_i^{d^e_{\mathrm{win}}})\cdot \mathrm{net}_f([\mathbf f]_j^{d^f_{\mathrm{win}}}),7–s(i,j)=nete([e]idwine)netf([f]jdwinf),s(i,j)=\mathrm{net}_e([\mathbf e]_i^{d^e_{\mathrm{win}}})\cdot \mathrm{net}_f([\mathbf f]_j^{d^f_{\mathrm{win}}}),8. In CAS terms, the closest equivalent here is therefore repeat-aware note-level s(i,j)=nete([e]idwine)netf([f]jdwinf),s(i,j)=\mathrm{net}_e([\mathbf e]_i^{d^e_{\mathrm{win}}})\cdot \mathrm{net}_f([\mathbf f]_j^{d^f_{\mathrm{win}}}),9, not any path-based combined score.

A related structure-aware audio-to-score alignment paper likewise does not define CAS. It separates structural-difference detection from final alignment by predicting inflection points in a cross-similarity matrix and then using an extended DTW recurrence. Final performance is reported only as beat alignment accuracy under eie_i0, eie_i1, eie_i2, and eie_i3 ms tolerances (Agrawal et al., 2021). On the Tido subset with structural differences, the best progressively dilated model, DCNNeie_i4, reaches eie_i5, eie_i6, eie_i7, and eie_i8 percent at those four thresholds. The paper is therefore informative for CAS design mainly because it distinguishes structural correctness from local timing correctness, even though it does not combine them into one published scalar.

A newer audio-to-score method that directly bridges audio-like and symbol-level features also omits CAS and instead reports mean error, median error, and thresholded success rates. Its proposed method achieves mean eie_i9 ms, median saggr(i,f)=aggrj=1fs(i,j).s_{\mathrm{aggr}}(i,\mathbf f)=\mathrm{aggr}_{j=1}^{|\mathbf f|} s(i,j).0 ms, saggr(i,f)=aggrj=1fs(i,j).s_{\mathrm{aggr}}(i,\mathbf f)=\mathrm{aggr}_{j=1}^{|\mathbf f|} s(i,j).1 within saggr(i,f)=aggrj=1fs(i,j).s_{\mathrm{aggr}}(i,\mathbf f)=\mathrm{aggr}_{j=1}^{|\mathbf f|} s(i,j).2 ms, saggr(i,f)=aggrj=1fs(i,j).s_{\mathrm{aggr}}(i,\mathbf f)=\mathrm{aggr}_{j=1}^{|\mathbf f|} s(i,j).3 within saggr(i,f)=aggrj=1fs(i,j).s_{\mathrm{aggr}}(i,\mathbf f)=\mathrm{aggr}_{j=1}^{|\mathbf f|} s(i,j).4 ms, saggr(i,f)=aggrj=1fs(i,j).s_{\mathrm{aggr}}(i,\mathbf f)=\mathrm{aggr}_{j=1}^{|\mathbf f|} s(i,j).5 within saggr(i,f)=aggrj=1fs(i,j).s_{\mathrm{aggr}}(i,\mathbf f)=\mathrm{aggr}_{j=1}^{|\mathbf f|} s(i,j).6 ms, and saggr(i,f)=aggrj=1fs(i,j).s_{\mathrm{aggr}}(i,\mathbf f)=\mathrm{aggr}_{j=1}^{|\mathbf f|} s(i,j).7 within saggr(i,f)=aggrj=1fs(i,j).s_{\mathrm{aggr}}(i,\mathbf f)=\mathrm{aggr}_{j=1}^{|\mathbf f|} s(i,j).8 ms, compared with an audio-to-audio baseline at mean saggr(i,f)=aggrj=1fs(i,j).s_{\mathrm{aggr}}(i,\mathbf f)=\mathrm{aggr}_{j=1}^{|\mathbf f|} s(i,j).9 ms, median saggr(i,f)=1rlog(j=1fers(i,j)),s_{\mathrm{aggr}}(i,\mathbf f)=\frac{1}{r}\log\left(\sum_{j=1}^{|\mathbf f|} e^{r\,s(i,j)}\right),0 ms, saggr(i,f)=1rlog(j=1fers(i,j)),s_{\mathrm{aggr}}(i,\mathbf f)=\frac{1}{r}\log\left(\sum_{j=1}^{|\mathbf f|} e^{r\,s(i,j)}\right),1 within saggr(i,f)=1rlog(j=1fers(i,j)),s_{\mathrm{aggr}}(i,\mathbf f)=\frac{1}{r}\log\left(\sum_{j=1}^{|\mathbf f|} e^{r\,s(i,j)}\right),2 ms, and saggr(i,f)=1rlog(j=1fers(i,j)),s_{\mathrm{aggr}}(i,\mathbf f)=\frac{1}{r}\log\left(\sum_{j=1}^{|\mathbf f|} e^{r\,s(i,j)}\right),3 within saggr(i,f)=1rlog(j=1fers(i,j)),s_{\mathrm{aggr}}(i,\mathbf f)=\frac{1}{r}\log\left(\sum_{j=1}^{|\mathbf f|} e^{r\,s(i,j)}\right),4 ms (Peter et al., 19 May 2026). The paper also notes that several audio-to-audio alignments had to be excluded because of obviously spurious alignment, whereas the proposed method worked robustly across the full dataset. This suggests that any CAS for audio-to-score work would need to combine precision with robustness rather than rely on a single threshold alone.

6. Domain-specific CAS acronyms and clinically motivated composite scores

The sharpest acronym collision occurs in medical image quality assessment. CAS-IQA defines CAS as Contrast-free Angiography Synthesis, not Combined Alignment Score. The framework predicts three separate targets—VMC, VBD, and OQ—each annotated on a continuous saggr(i,f)=1rlog(j=1fers(i,j)),s_{\mathrm{aggr}}(i,\mathbf f)=\frac{1}{r}\log\left(\sum_{j=1}^{|\mathbf f|} e^{r\,s(i,j)}\right),5 scale. Subject ratings are normalized by

saggr(i,f)=1rlog(j=1fers(i,j)),s_{\mathrm{aggr}}(i,\mathbf f)=\frac{1}{r}\log\left(\sum_{j=1}^{|\mathbf f|} e^{r\,s(i,j)}\right),6

rescaled to saggr(i,f)=1rlog(j=1fers(i,j)),s_{\mathrm{aggr}}(i,\mathbf f)=\frac{1}{r}\log\left(\sum_{j=1}^{|\mathbf f|} e^{r\,s(i,j)}\right),7, and averaged as

saggr(i,f)=1rlog(j=1fers(i,j)),s_{\mathrm{aggr}}(i,\mathbf f)=\frac{1}{r}\log\left(\sum_{j=1}^{|\mathbf f|} e^{r\,s(i,j)}\right),8

OQ is described as a holistic metric that balances VMC and VBD while also accounting for visual artifacts, but it is separately annotated and separately predicted rather than defined as a deterministic algebraic combination of the other two scores (Wang et al., 23 May 2025).

CRAFT, by contrast, introduces CAS explicitly as the Clinical Alignment Score. CAS is defined as the macro-average of four primitive scores—Visual Description Consistency (VDC), Clinical Criteria Satisfaction (CCS), Diagnostic Discriminability (DD), and Semantic Feature Similarity (SFS)—computed in the SigLIP evaluator embedding space (Chung et al., 12 May 2026). The reward-side primitives are

saggr(i,f)=1rlog(j=1fers(i,j)),s_{\mathrm{aggr}}(i,\mathbf f)=\frac{1}{r}\log\left(\sum_{j=1}^{|\mathbf f|} e^{r\,s(i,j)}\right),9

r=1r=10

and are averaged during training as

r=1r=11

This is a fully explicit composite metric, but its name is Clinical Alignment Score, not Combined Alignment Score. The paper further analyzes the low-alignment tail using a dataset-specific threshold r=1r=12 equal to the 25th percentile of the real-image CAS distribution and reports r=1r=13–r=1r=14 percentage point reductions relative to the strongest baseline, corresponding to a r=1r=15 average relative reduction across datasets (Chung et al., 12 May 2026).

Outside medical imaging, multimodal alignment papers often prefer scalar predictors or reward functions rather than named CAS metrics. SPO-CLAPScore predicts

r=1r=16

and trains against the listener-wise standardized target

r=1r=17

combining MSE with a contrastive term (Takano et al., 6 Jan 2026). AGSM defines an internal alignment probability

r=1r=18

and a modified score-matching target

r=1r=19

but evaluates alignment through multiple separate benchmarks rather than a single universal score (Lee et al., 28 May 2026). Taken together, these works reinforce a general pattern: a combined alignment score becomes meaningful only when the paper specifies exactly which primitives are combined, how they are normalized, and whether the resulting scalar is used for training, evaluation, or both.

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 Combined Alignment Score (CAS).