Contrastive Order Learning: A General Framework for Ordinal Regression
Summary
ConOrd proposes a contrastive learning framework for ordinal regression that integrates contrastive learning and order learning, achieving state-of-the-art performance on facial age estimation, image quality assessment, and video quality assessment.
View Cached Full Text
Cached at: 07/10/26, 06:19 AM
# Contrastive Order Learning: A General Framework for Ordinal Regression
Source: [https://arxiv.org/html/2607.08109](https://arxiv.org/html/2607.08109)
###### Abstract
We propose contrastive order learning \(ConOrd\), a contrastive learning framework for ordinal regression that integrates the strengths of contrastive learning and order learning\. While contrastive learning effectively leverages all samples in a batch, it typically ignores the inherent ordering among rank labels\. Conversely, order learning explicitly models label ordinality but often relies on local, margin\-based comparisons, limiting its ability to capture global ordinal structure\. ConOrd addresses these limitations by introducing a contrastive order loss with soft affinity and disparity weights based on rank differences, enabling fine\-grained modeling of ordinal relationships across all sample pairs within a batch\. Extensive experiments on a range of ordinal regression tasks, including facial age estimation, blind image quality assessment, and blind video quality assessment, demonstrate that ConOrd consistently achieves state\-of\-the\-art performance and generalizes well across diverse ordinal regression scenarios\. The source code is available at[https://github\.com/cwlee00/ConOrd](https://github.com/cwlee00/ConOrd)\.
contrastive learning, order learning, ordinal regression, ICML
## 1Introduction
Ordinal regression is a task to estimate the discrete or continuous rank of an object instance\. For example, facial age estimation aims to predict a person’s age given their facial photograph, while image quality assessment predicts the quality score for an image\. It is a fundamental problem frequently arising in many real\-world scenarios, including facial age estimation\(Moschoglouet al\.,[2017](https://arxiv.org/html/2607.08109#bib.bib37)\), health status scoring\(Engemannet al\.,[2022](https://arxiv.org/html/2607.08109#bib.bib122)\), image and video quality assessment\(Yinget al\.,[2021](https://arxiv.org/html/2607.08109#bib.bib21); Hosuet al\.,[2017](https://arxiv.org/html/2607.08109#bib.bib32)\), and gaze direction estimation\(Wanget al\.,[2022](https://arxiv.org/html/2607.08109#bib.bib45)\)\.
Despite its wide applicability, ordinal regression poses inherent challenges: there is no clear distinction between adjacent ranks, and the semantic gap between neighboring labels can be subtle or ambiguous\. It is hence difficult for a machine to learn discriminative representations that accurately reflect the underlying ordinal structure\. To address these challenges, various methods have been proposed\(Li and Lin,[2007](https://arxiv.org/html/2607.08109#bib.bib63); Rotheet al\.,[2018](https://arxiv.org/html/2607.08109#bib.bib128); Genget al\.,[2013](https://arxiv.org/html/2607.08109#bib.bib130); Diaz and Marathe,[2019](https://arxiv.org/html/2607.08109#bib.bib46)\)\. Recently, order learning techniques\(Limet al\.,[2020](https://arxiv.org/html/2607.08109#bib.bib1); Lee and Kim,[2021](https://arxiv.org/html/2607.08109#bib.bib2); Leeet al\.,[2022](https://arxiv.org/html/2607.08109#bib.bib4)\)have achieved notable success\. Among them, geometric order learning \(GOL\)\(Leeet al\.,[2022](https://arxiv.org/html/2607.08109#bib.bib4)\)enforces metric and order constraints to arrange instances according to their ranks in an embedding space\. However, as a margin\-based pairwise approach, GOL generates no gradient once the margin is satisfied and cannot fully exploit the richer ordinal context available at the batch level, limiting its ability to capture fine\-grained ordinal relationships\.
Meanwhile, supervised contrastive learning\(Khoslaet al\.,[2020](https://arxiv.org/html/2607.08109#bib.bib49)\)has also been extended to ordinal regression, most notably in the RnC algorithm\(Zhaet al\.,[2023](https://arxiv.org/html/2607.08109#bib.bib16)\)\. While supervised contrastive learning relies on categorical labels to define positive and negative pairs, RnC constructs rank\-aware pairs by comparing relative rank differences within a batch\. Specifically, RnC selects an anchor and a positive sample, and treats samples whose rank differences from the anchor exceed that of the positive as negatives\. However, this hard thresholding collapses ordinal distances into binary decisions, treating samples with both moderately and substantially larger rank gaps equally as negatives\. As a result, RnC under\-utilizes the full spectrum of ordinal information available within a batch\.

Figure 1:Comparison of three contrastive learning techniques: \(a\) supervised contrastive learning \(SupCon\)\(Khoslaet al\.,[2020](https://arxiv.org/html/2607.08109#bib.bib49)\), \(b\) Rank\-N\-Contrast \(RnC\)\(Zhaet al\.,[2023](https://arxiv.org/html/2607.08109#bib.bib16)\), and \(c\) the proposed ConOrd\. SupCon considers the augmented view of an anchor as the only positive and treats all the others as negatives\. RnC selects one sample as a positive and defines negatives as those with rank differences greater than the anchor–positive pair\. Different from these existing techniques, ConOrd comparesallsamples in a batch by defining positive and negative samples in asoftmanner\.In this paper, we propose contrastive order learning \(ConOrd\), which integrates the complementary strengths of order learning and contrastive learning while alleviating their respective limitations\. Order learning explicitly models ordinal structure in an embedding space by encouraging attraction between samples with similar ranks and repulsion between dissimilar ones\(Leeet al\.,[2022](https://arxiv.org/html/2607.08109#bib.bib4)\), but it typically relies on local supervision such as pairwise or margin\-based losses, which can be insufficient for learning a globally consistent embedding\. In contrast, contrastive learning effectively exploits batch\-level relationships among samples, yet often ignores the ordered nature of labels and treats ordinal differences in a categorical manner\. ConOrd bridges this gap by introducing a contrastive order loss that assigns soft affinity and disparity weights based on rank differences, enabling all samples in a batch to contribute to learning with strengths modulated by their ordinal relationships\. As illustrated in Figure[1](https://arxiv.org/html/2607.08109#S1.F1), this design introduces soft, rank\-aware interactions into a contrastive learning framework\. By combining soft ordinal supervision with all\-pairs contrastive comparison, ConOrd captures fine\-grained ordinal structure while maintaining global consistency in the embedding space\. Extensive experiments demonstrate that ConOrd achieves strong performance across a variety of ordinal regression tasks\.
Our contributions are summarized as follows:
- •We introduce contrastive order learning \(ConOrd\), a contrastive learning framework for ordinal regression that integrates ordinal structure into batch\-wise representation learning\.
- •We propose a contrastive order loss that contrasts all sample pairs in a batch using soft affinity and disparity weights based on rank differences, enabling fine\-grained ordinal supervision and the construction of a globally consistent embedding space\.
- •ConOrd achieves state\-of\-the\-art performance on multiple ordinal regression benchmarks, including facial age estimation, blind image quality assessment \(BIQA\), and blind video quality assessment \(BVQA\), and demonstrates strong generalization across diverse regression tasks\.

Figure 2:Overview of the proposed ConOrd framework for ordinal regression\.
## 2Related Work
### 2\.1Ordinal Regression
Ordinal regression aims to predict the ordinal labels or ranks of object instances, which have an inherent order\. It has been used in various applications, including medical diagnosis\(Wuet al\.,[2019](https://arxiv.org/html/2607.08109#bib.bib60); Liuet al\.,[2018](https://arxiv.org/html/2607.08109#bib.bib61)\), depth estimation\(Fuet al\.,[2018](https://arxiv.org/html/2607.08109#bib.bib59)\), and facial age estimation\(Rotheet al\.,[2018](https://arxiv.org/html/2607.08109#bib.bib128); Zhuet al\.,[2021](https://arxiv.org/html/2607.08109#bib.bib129)\)\. Early approaches either reformulated the problem as multiple binary classification tasks\(Frank and Hall,[2001](https://arxiv.org/html/2607.08109#bib.bib62); Li and Lin,[2007](https://arxiv.org/html/2607.08109#bib.bib63)\)or dealt with it as a regression problem by adapting traditional classification loss functions\(Rennie and Srebro,[2005](https://arxiv.org/html/2607.08109#bib.bib64); Rotheet al\.,[2018](https://arxiv.org/html/2607.08109#bib.bib128)\)\. To better exploit the ordinal properties of labels, subsequent methods have employed label distribution learning\(Genget al\.,[2013](https://arxiv.org/html/2607.08109#bib.bib130)\), mean\-variance loss\(Panet al\.,[2018](https://arxiv.org/html/2607.08109#bib.bib65)\), soft ordinal labels\(Diaz and Marathe,[2019](https://arxiv.org/html/2607.08109#bib.bib46)\), and probabilistic embeddings\(Liet al\.,[2021](https://arxiv.org/html/2607.08109#bib.bib30)\)\.
However, many of these methods fail to capture inter\-class relationships effectively, which may limit performance\(Niuet al\.,[2016](https://arxiv.org/html/2607.08109#bib.bib77); Chenet al\.,[2017](https://arxiv.org/html/2607.08109#bib.bib66)\)\. To address this issue, distance\-aware label embeddings\(Shiet al\.,[2016](https://arxiv.org/html/2607.08109#bib.bib67)\), rank learning\(Chenet al\.,[2017](https://arxiv.org/html/2607.08109#bib.bib66)\), and monotonic loss functions\(Zhuet al\.,[2021](https://arxiv.org/html/2607.08109#bib.bib129)\)have been proposed\. Also,Zhanget al\.\([2023](https://arxiv.org/html/2607.08109#bib.bib15)\)introduced an ordinal entropy regularizer, which promotes higher\-entropy feature spaces while maintaining ordinal relationships\. Meanwhile, evaluation metrics and loss designs that consider class proximity have been explored\(Amigóet al\.,[2020](https://arxiv.org/html/2607.08109#bib.bib131)\), along with methods that tackle class imbalance\(Nachmaniet al\.,[2025](https://arxiv.org/html/2607.08109#bib.bib68)\)\. Through this progression, ordinal regression has come to be recognized — distinct from ordinary classification — as a predictive task that requires modeling both the order and the relative distances between classes\.
### 2\.2Order Learning
Recently, order learning\(Limet al\.,[2020](https://arxiv.org/html/2607.08109#bib.bib1)\)has emerged as a promising approach to ordinal regression or rank estimation\. In order learning, ordering relationships between object instances are learned, and the rank of an instance is estimated by comparing it with reference instances of known ranks\. For reliable reference selection,Lee and Kim \([2021](https://arxiv.org/html/2607.08109#bib.bib2)\)decomposed object embeddings into order and identity features and selected references with similar identity features\.Shinet al\.\([2022](https://arxiv.org/html/2607.08109#bib.bib3)\)proposed a regression\-based formulation to estimate a continuous relative rank between two references\.Lee and Kim \([2022](https://arxiv.org/html/2607.08109#bib.bib5)\)extended order learning to a weakly\-supervised setting to cope with limited annotations, andLeeet al\.\([2024](https://arxiv.org/html/2607.08109#bib.bib6)\)proposed unsupervised order learning, which optimizes ordered clustering and embedding space construction alternately\.
However, the direct comparison methods\(Limet al\.,[2020](https://arxiv.org/html/2607.08109#bib.bib1); Lee and Kim,[2021](https://arxiv.org/html/2607.08109#bib.bib2); Shinet al\.,[2022](https://arxiv.org/html/2607.08109#bib.bib3)\)should compare a test instance with multiple references, demanding considerable testing complexity, and do not consider metric relations between instances\. To overcome these issues,Leeet al\.\([2022](https://arxiv.org/html/2607.08109#bib.bib4)\)proposed GOL that exploits metric, as well as order, relations to construct an embedding space and enables efficient rank estimation through a simplekk\-NN search in the embedding space\.
### 2\.3Contrastive Learning
Contrastive learning aims to learn discriminative representations by modeling similarities and dissimilarities between object instances\. It encourages the representations of similar \(or positive\) pairs to be pulled closer in an embedding space, while those of dissimilar \(or negative\) pairs to be pushed apart\. Early methods\(Chenet al\.,[2020](https://arxiv.org/html/2607.08109#bib.bib47); Heet al\.,[2020](https://arxiv.org/html/2607.08109#bib.bib48)\)were largely explored in self\-supervised scenarios, in which positive and negative pairs were constructed without requiring explicit labels\.
To further leverage label information, supervised contrastive learning\(Khoslaet al\.,[2020](https://arxiv.org/html/2607.08109#bib.bib49)\)was introduced\. Instead of solely relying on data augmentations to construct positive pairs, it also defines positive pairs from samples of the same class\. The extension of contrastive learning to the fully supervised setting allows the learned feature space to reflect semantic structures more effectively, improving performance significantly in downstream tasks, such as image classification\.
Although contrastive learning has achieved strong performance in various tasks, such as semantic segmentation\(Liuet al\.,[2021](https://arxiv.org/html/2607.08109#bib.bib123)\), object detection\(Xieet al\.,[2021](https://arxiv.org/html/2607.08109#bib.bib55)\), and medical imaging\(Basak and Yin,[2023](https://arxiv.org/html/2607.08109#bib.bib56)\), its extension to regression and ordinal settings remains challenging\. As contrastive objectives are primarily designed for categorical supervision, they often fail to capture the continuous ordering between samples\. To address this, RnC\(Zhaet al\.,[2023](https://arxiv.org/html/2607.08109#bib.bib16)\)introduced rank\-based pairings, but it relies only on relative ordering and ignores the magnitude of rank differences\. Subsequent methods explored adaptive temperatures\(Baeket al\.,[2024](https://arxiv.org/html/2607.08109#bib.bib85)\), data augmentation\(Zhenget al\.,[2024](https://arxiv.org/html/2607.08109#bib.bib84)\), or multi\-margin formulations\(Pitawelaet al\.,[2025](https://arxiv.org/html/2607.08109#bib.bib83)\), yet these approaches introduce additional hyperparameters or optimization complexity and may suffer from training instability\. Building on these advances, we propose a soft\-weighted contrastive scheme that explicitly incorporates rank differences to provide more stable and expressive ordinal supervision\.
## 3Proposed Algorithm
### 3\.1Problem Formulation and Overview
The objective of ordinal regression is to estimate the rankrrof a given instancexx\. Unlike classification, in ordinal regression, rank labels are naturally ordered and associated with inherent distance information\(Leeet al\.,[2022](https://arxiv.org/html/2607.08109#bib.bib4)\)\. For example, consider three instancesxix\_\{i\},xjx\_\{j\}, andxkx\_\{k\}with ranksri=10r\_\{i\}=10,rj=12r\_\{j\}=12, andrk=30r\_\{k\}=30\. In this case, there exists a natural orderingri<rj<rkr\_\{i\}<r\_\{j\}<r\_\{k\}, and the rank difference betweenrir\_\{i\}andrjr\_\{j\}is smaller than that betweenrjr\_\{j\}andrkr\_\{k\},i\.e\.,\|ri−rj\|<\|rj−rk\|\|r\_\{i\}\-r\_\{j\}\|<\|r\_\{j\}\-r\_\{k\}\|\. This observation highlights that effective learning for ordinal regression should account not only for relative ordering, but also for the magnitude of rank differences\.

Figure 3:The ConOrd lossLConOrdL\_\{\\text\{ConOrd\}\}encourages the attraction of similar samples and the repulsion of dissimilar samples in the embedding space, by employing affinity weightsaija\_\{ij\}and disparity weightsbijb\_\{ij\}, respectively\.Motivated by this property, we aim to construct an embedding space in which instances are organized according to their ordinal relationships\. To this end, we employ an encoderhhthat maps each instancex∈𝒳x\\in\\mathcal\{X\}to a feature vectorz=h\(x\)z=h\(x\)in the embedding space, where features areℓ2\\ell\_\{2\}\-normalized to lie on the unit sphere\. Suppose that a training set𝒳\\mathcal\{X\}containsMMdistinct ranks\. We introduceMMlearnable reference points\{μm\}m=1M\\\{\\mu\_\{m\}\\\}\_\{m=1\}^\{M\}, where eachμm\\mu\_\{m\}represents a prototype associated with rankmm\. Building on this embedding space with reference points, we consider a contrastive formulation that can capture rank\-dependent attraction and repulsion among instances, which guides the encoder to produce features that are both order\-aware and well\-structured\. An overview of the proposed learning framework is illustrated in Figure[2](https://arxiv.org/html/2607.08109#S1.F2)\.
We refer to a set of2N2Ntraining instances\{xi\}i=12N\\\{x\_\{i\}\\\}\_\{i=1\}^\{2N\}as a batch\. Unlike supervised contrastive learning\(Khoslaet al\.,[2020](https://arxiv.org/html/2607.08109#bib.bib49)\), which relies on data augmentation to define positive pairs, the proposed formulation operates directly on a batch of independently sampled instances and constructs the objective over all pairwise relationships without predefined positive or negative roles\.
LetI=\{1,…,2N\}I=\\\{1,\\ldots,2N\\\}be the index set of samples within a batch, andziz\_\{i\}be the embedding vector ofxix\_\{i\}\. Also,κij\\kappa\_\{ij\}denotes the similarity betweenziz\_\{i\}andzjz\_\{j\}\(e\.g\.,κij=ziTzj\\kappa\_\{ij\}=z\_\{i\}^\{T\}z\_\{j\}\), andτ\\tauis a temperature parameter controlling the sharpness of the similarity\. Then, the SupCon loss is given by
LSupCon=−12N∑i=12N1\|P\(i\)\|∑p∈P\(i\)logeκip/τ∑j∈A\(i\)eκij/τ\\textstyle L\_\{\\text\{SupCon\}\}=\-\\frac\{1\}\{2N\}\\sum\_\{i=1\}^\{2N\}\\frac\{1\}\{\|P\(i\)\|\}\\sum\_\{p\\in P\(i\)\}\\log\\frac\{e^\{\\kappa\_\{ip\}/\\tau\}\}\{\\sum\_\{j\\in A\(i\)\}e^\{\\kappa\_\{ij\}/\\tau\}\}\(1\)whereiiis the index of an anchor,A\(i\)=I−\{i\}A\(i\)=I\-\\\{i\\\}is the set of the remaining indices, andP\(i\)P\(i\)is the set of the indices of positive samples in the batch distinct fromii\.
In \([1](https://arxiv.org/html/2607.08109#S3.E1)\), the ratioeκip/τ/∑jeκij/τe^\{\\kappa\_\{ip\}/\\tau\}/\\sum\_\{j\}e^\{\\kappa\_\{ij\}/\\tau\}can be interpreted as the probability that the anchoriiis matched to the positive sampleppamong all other samples in the embedding space\. By minimizing the negative logarithm in \([1](https://arxiv.org/html/2607.08109#S3.E1)\), the matching probability is maximized\. This suits the purpose of classification\. On the other hand, in ordinal regression, it is desirable to match the anchoriito another samplejjsuch that the rank estimation error\|ri−rj\|\|r\_\{i\}\-r\_\{j\}\|is minimized\. Thus, we can define the mean absolute error \(MAE\) loss for ordinal regression as
LMAE=12N∑i=12N1\|A\(i\)\|log∑j∈A\(i\)\|ri−rj\|eκij/τ∑j∈A\(i\)eκij/τ\.\\textstyle L\_\{\\text\{MAE\}\}=\\frac\{1\}\{2N\}\\sum\_\{i=1\}^\{2N\}\\frac\{1\}\{\|A\(i\)\|\}\\log\\frac\{\\sum\_\{j\\in A\(i\)\}\|r\_\{i\}\-r\_\{j\}\|e^\{\\kappa\_\{ij\}/\\tau\}\}\{\\sum\_\{j\\in A\(i\)\}e^\{\\kappa\_\{ij\}/\\tau\}\}\.\(2\)Note thatLMAEL\_\{\\text\{MAE\}\}involves the positive logarithm because it attempts to minimize the expected rank estimation error∑j\|ri−rj\|×\(eκij/τ/∑keκik/τ\)\\sum\_\{j\}\|r\_\{i\}\-r\_\{j\}\|\\times\(e^\{\\kappa\_\{ij\}/\\tau\}/\\sum\_\{k\}e^\{\\kappa\_\{ik\}/\\tau\}\)\.
### 3\.2Contrastive Order Learning
The naive lossLMAEL\_\{\\text\{MAE\}\}in \([2](https://arxiv.org/html/2607.08109#S3.E2)\), however, makes the encoder training less reliable, for its positive logarithm tends to increase the magnitudes of gradients as the training goes on\. To address this training issue while retaining its goal of matching the anchor to another sample of a similar rank in the embedding space, we design the ConOrd loss as
LConOrd=−12N∑i=12N1\|A\(i\)\|log∑j∈A\(i\)aijeκij/τ∑j∈A\(i\)bijeκij/τ,\\textstyle L\_\{\\text\{ConOrd\}\}=\-\\frac\{1\}\{2N\}\\sum\_\{i=1\}^\{2N\}\\frac\{1\}\{\|A\(i\)\|\}\\log\\frac\{\\sum\_\{j\\in A\(i\)\}a\_\{ij\}e^\{\\kappa\_\{ij\}/\\tau\}\}\{\\sum\_\{j\\in A\(i\)\}b\_\{ij\}e^\{\\kappa\_\{ij\}/\\tau\}\},\(3\)whereaija\_\{ij\}is an affinity weight, andbijb\_\{ij\}is a disparity weight\.
This formulation is designed to satisfy three key requirements for ordinal contrastive learning: \(i\) attraction should decrease and repulsion should increase with the rank gap to preserve ordinal consistency\(Leeet al\.,[2022](https://arxiv.org/html/2607.08109#bib.bib4)\), \(ii\) the weighting functions should vary smoothly with respect to the rank gap to promote stable optimization, and \(iii\) among multiple monotonic choices satisfying these requirements, a simple and robust instantiation is preferred in practice\.
Following the above requirements, we instantiate the affinity and disparity weights as simple monotonic functions of the rank gap\|ri−rj\|\|r\_\{i\}\-r\_\{j\}\|\. In particular, the affinity weightaija\_\{ij\}is defined to decrease with the rank gap in order to promote similarity between samples of similar ranks, and is set as
aij=1\(ri−rj\)2\+ϵ,\\textstyle a\_\{ij\}=\\frac\{1\}\{\(r\_\{i\}\-r\_\{j\}\)^\{2\}\+\\epsilon\},\(4\)whereϵ\\epsilonis a small constant to prevent division by zero\. Conversely, the disparity weightbijb\_\{ij\}is designed to increase with the rank gap to encourage separation between samples with distant ranks, and is instantiated as
bij=\(ri−rj\)2\.\\textstyle b\_\{ij\}=\(r\_\{i\}\-r\_\{j\}\)^\{2\}\.\(5\)We further setκij=−‖zi−zj‖22\\kappa\_\{ij\}=\-\\\|z\_\{i\}\-z\_\{j\}\\\|\_\{2\}^\{2\}\. Alternative choices ofκij\\kappa\_\{ij\},aija\_\{ij\}, andbijb\_\{ij\}are systematically evaluated in Appendix[15](https://arxiv.org/html/2607.08109#A3.T15)\.
Table 1:MAE comparison on age estimation datasets\.Table 2:Performance comparison on five BIQA datasets\.Table 3:Comparison of BVQA results in the intra\-dataset evaluation on LSVQ and in the cross\-dataset evaluation on KonViD\-1k, LIVE\-VQC, CVD2014, and YouTube\-UGC\.The proposed ConOrd loss has the following properties\.
- •Rank\-aware attraction and repulsion:In Appendix[A](https://arxiv.org/html/2607.08109#A1), the gradient ofLConOrdL\_\{\\text\{ConOrd\}\}is derived as ∂LConOrd∂zi=1Nτ\|A\(i\)\|∑j∈A\(i\)eκij/τ\(aijαi−bijβi\)\(zi−zj\)\\textstyle\\frac\{\\partial L\_\{\\text\{ConOrd\}\}\}\{\\partial z\_\{i\}\}=\\frac\{1\}\{N\\tau\|A\(i\)\|\}\\sum\_\{j\\in A\(i\)\}e^\{\\kappa\_\{ij\}/\\tau\}\(\\frac\{a\_\{ij\}\}\{\\alpha\_\{i\}\}\-\\frac\{b\_\{ij\}\}\{\\beta\_\{i\}\}\)\(z\_\{i\}\-z\_\{j\}\)\(6\)whereαi=∑jaijeκij/τ\\alpha\_\{i\}=\\sum\_\{j\}a\_\{ij\}e^\{\\kappa\_\{ij\}/\\tau\}andβi=∑jbijeκij/τ\\beta\_\{i\}=\\sum\_\{j\}b\_\{ij\}e^\{\\kappa\_\{ij\}/\\tau\}\. The factor\(aijαi−bijβi\)\(\\frac\{a\_\{ij\}\}\{\\alpha\_\{i\}\}\-\\frac\{b\_\{ij\}\}\{\\beta\_\{i\}\}\)in \([6](https://arxiv.org/html/2607.08109#S3.E6)\) determines whether gradient descent movesziz\_\{i\}toward or away fromzjz\_\{j\}\. Since the affinity weightaija\_\{ij\}is large for small rank gaps and the disparity weightbijb\_\{ij\}is large for large rank gaps, ConOrd attracts samples with similar ranks and repels samples with distant ranks, as illustrated in Figure[3](https://arxiv.org/html/2607.08109#S3.F3)\. This provides a smooth ordinal interaction mechanism that generalizes the margin\-based attraction and repulsion forces in GOL\(Leeet al\.,[2022](https://arxiv.org/html/2607.08109#bib.bib4)\)\.
- •Locality induced by the exponential kernel:The factoreκij/τe^\{\\kappa\_\{ij\}/\\tau\}in \([6](https://arxiv.org/html/2607.08109#S3.E6)\) further modulates each pairwise contribution according to embedding proximity, becauseκij=−‖zi−zj‖22\\kappa\_\{ij\}=\-\\\|z\_\{i\}\-z\_\{j\}\\\|\_\{2\}^\{2\}\. Pairs that are already close in the embedding space receive stronger weights, whereas distant pairs are exponentially suppressed\. Consequently, ConOrd focuses its updates on the most informative ordinal relations — pairs that are close in rank and close in the embedding space — leading to fine\-grained ordinal discrimination\.
- •Contrasting all samples with soft weights:A key strength ofLConOrdL\_\{\\text\{ConOrd\}\}lies in its ability to contrast all samples in a batch through soft weighting, rather than relying on hard assignment of positives and negatives\. Traditional contrastive losses\(Chenet al\.,[2020](https://arxiv.org/html/2607.08109#bib.bib47); Heet al\.,[2020](https://arxiv.org/html/2607.08109#bib.bib48); Khoslaet al\.,[2020](https://arxiv.org/html/2607.08109#bib.bib49); Caronet al\.,[2020](https://arxiv.org/html/2607.08109#bib.bib73)\)select a positive sample and contrast it with all other samples in a batch, as in \([1](https://arxiv.org/html/2607.08109#S3.E1)\)\. In contrast, ConOrd assigns continuous affinity and disparity weightsaija\_\{ij\}andbijb\_\{ij\}to all sample pairs based on the rank difference\|ri−rj\|\|r\_\{i\}\-r\_\{j\}\|, allowing every pair\(i,j\)\(i,j\)to contribute to the loss with an influence modulated by ordinal similarity\. By retaining all pairwise comparisons, ConOrd can exploit the full spectrum of ordinal relationships present within a batch\.
- •Connection to RnC loss:LConOrdL\_\{\\text\{ConOrd\}\}is conceptually related to the RnC loss\(Zhaet al\.,[2023](https://arxiv.org/html/2607.08109#bib.bib16)\), which also incorporates rank information into a contrastive framework\. However, similar to traditional contrastive losses, RnC relies on hard decisions to define positive and negative samples and employs binary weighting\. The RnC loss is defined as LRnC=−12N∑i=12N1\|A\(i\)\|∑j∈A\(i\)logeκij/τ∑k∈𝒩\(i,j\)eκik/τ,\\textstyle L\_\{\\text\{RnC\}\}=\-\\frac\{1\}\{2N\}\\sum\_\{i=1\}^\{2N\}\\frac\{1\}\{\|A\(i\)\|\}\\sum\_\{j\\in A\(i\)\}\\log\\frac\{e^\{\\kappa\_\{ij\}/\\tau\}\}\{\\sum\_\{k\\in\\mathcal\{N\}\(i,j\)\}e^\{\\kappa\_\{ik\}/\\tau\}\},\(7\)where𝒩\(i,j\)=\{k:\|ri−rk\|≥\|ri−rj\|\}\\mathcal\{N\}\(i,j\)=\\\{k:\|r\_\{i\}\-r\_\{k\}\|\\geq\|r\_\{i\}\-r\_\{j\}\|\\\}\. In RnC, each positive samplejjis contrasted against negativeskksatisfying\|ri−rk\|≥\|ri−rj\|\|r\_\{i\}\-r\_\{k\}\|\\geq\|r\_\{i\}\-r\_\{j\}\|, which are aggregated equally in the denominator regardless of their rank gaps\. As a result, RnC enforces relative ordering but does not distinguish how much farther negatives are from the anchor, limiting its ability to capture fine\-grained ordinal structure\. In contrast, ConOrd assigns continuous affinity and disparity weightsaija\_\{ij\}andbijb\_\{ij\}to all sample pairs, which can be viewed as a soft relaxation of the hard rank thresholds in RnC, enabling finer\-grained ordinal supervision\.
- •Choice of affinity and disparity weights:The affinity and disparity weights depend only on the rank gapdij=\|ri−rj\|d\_\{ij\}=\|r\_\{i\}\-r\_\{j\}\|\. In this work, we adopt quadratic forms,aij=1/\(dij2\+ϵ\)a\_\{ij\}=1/\(d\_\{ij\}^\{2\}\+\\epsilon\)andbij=dij2b\_\{ij\}=d\_\{ij\}^\{2\}, which are simple, smooth, symmetric, and strictly monotonic functions ofdijd\_\{ij\}\. This choice yields a balanced interaction between attraction and repulsion, assigning stronger attractive weights to small rank gaps while emphasizing repulsion for larger gaps\. This design represents a stable instantiation within a broader class of monotonic weighting functions, and our experiments indicate that ConOrd is not sensitive to the specific functional form\.
Additional properties and gradient analysis ofLConOrdL\_\{\\text\{ConOrd\}\}are provided in Appendix[A](https://arxiv.org/html/2607.08109#A1)\.
### 3\.3Training and Inference
In addition toLConOrdL\_\{\\text\{ConOrd\}\}, we introduce the center loss\(Nguyenet al\.,[2018](https://arxiv.org/html/2607.08109#bib.bib116)\)as a regularization term to further structure the embedding space\. The center loss, which seeks to locate each reference pointμm\\mu\_\{m\}at the center of all instances with rankmm, is defined as
Lcenter=∑i‖zi−μri‖2\.\\textstyle L\_\{\\text\{center\}\}=\\sum\_\{i\}\\\|z\_\{i\}\-\\mu\_\{r\_\{i\}\}\\\|\_\{2\}\.\(8\)This encourages the encoder to produce a compact cluster in the embedding space for each rank\.
Overall, we optimize the encoder parameters and reference points by minimizing the following total loss:
Ltotal=LConOrd\+Lcenter\.\\textstyle L\_\{\\text\{total\}\}=L\_\{\\text\{ConOrd\}\}\+L\_\{\\text\{center\}\}\.\(9\)
In the inference phase, we estimate the rank of an unseen test instance based on thekk\-NN rule, as done in\(Leeet al\.,[2022](https://arxiv.org/html/2607.08109#bib.bib4)\)\. We first extract the feature vectorzt=h\(xt\)z\_\{t\}=h\(x\_\{t\}\)of a test instancextx\_\{t\}\. Then, in the embedding space, we find a set𝒩\\mathcal\{N\}of itskknearest neighbors among all training instances in𝒳\\mathcal\{X\}\. Finally, the rank ofxtx\_\{t\}is estimated by
r^t=1k∑i:xi∈𝒩ri\.\\textstyle\\hat\{r\}\_\{t\}=\\frac\{1\}\{k\}\\sum\_\{i\\,:\\,x\_\{i\}\\in\\mathcal\{N\}\}r\_\{i\}\.\(10\)
## 4Experimental Results
We apply ConOrd to three different ordinal regression tasks: facial age estimation, image quality assessment, and video quality assessment\. Due to the space limitation, datasets and implementation details for each task are specified in Appendix[B](https://arxiv.org/html/2607.08109#A2)\. Results on additional regression tasks, including temperature prediction and gaze direction estimation, as well as comparisons against deep imbalanced regression\(DIR\) methods on standard DIR benchmarks are also presented in Appendix[C](https://arxiv.org/html/2607.08109#A3)\.
### 4\.1Facial Age Estimation
Datasets:We use six datasets of MORPH II\(Ricanek and Tesafaye,[2006](https://arxiv.org/html/2607.08109#bib.bib35)\), CLAP2015\(Escaleraet al\.,[2015](https://arxiv.org/html/2607.08109#bib.bib36)\), AgeDB\-DIR\(Moschoglouet al\.,[2017](https://arxiv.org/html/2607.08109#bib.bib37); Yanget al\.,[2021](https://arxiv.org/html/2607.08109#bib.bib38)\), UTK\(Zhanget al\.,[2017c](https://arxiv.org/html/2607.08109#bib.bib39)\), CACD\(Chenet al\.,[2015](https://arxiv.org/html/2607.08109#bib.bib115)\), and Adience\(Levi and Hassner,[2015](https://arxiv.org/html/2607.08109#bib.bib40)\), as detailed in Appendix[B\.1](https://arxiv.org/html/2607.08109#A2.SS1)\.
Comparison with state\-of\-the\-art methods:Recent state\-of\-the\-art age estimation methods\(Wanget al\.,[2023](https://arxiv.org/html/2607.08109#bib.bib18); Duet al\.,[2024](https://arxiv.org/html/2607.08109#bib.bib19)\)adopt a ViT\-B backbone\(Radfordet al\.,[2021](https://arxiv.org/html/2607.08109#bib.bib44)\)due to its strong representational capacity\. For fair comparison, ConOrd employs the same ViT\-B encoder\. As reported in Table[1](https://arxiv.org/html/2607.08109#S3.T1), ConOrd achieves the best performance on all datasets except CACD under the MAE metric, demonstrating strong generalization across diverse age estimation benchmarks\.
Notably, ConOrd outperforms OrdinalCLIP and NumCLIP, which employ the same backbone but additionally leverage textual information to guide learning\. It also achieves better or comparable performance compared with SLACE, an imbalance\-aware ordinal regression loss that uses class\-distribution information, under the same ViT\-B backbone\. Although the default ConOrd does not use explicit label\-frequency statistics, it remains competitive with such imbalance\-aware methods; Appendix[14](https://arxiv.org/html/2607.08109#A3.F14)further shows that a frequency\-aware configuration of ConOrd can provide additional gains when such statistics are available\.
### 4\.2Blind Image Quality Assessment
Datasets:We conduct BIQA experiments on five datasets of BID\(Ciancioet al\.,[2010](https://arxiv.org/html/2607.08109#bib.bib117)\), CLIVE\(Ghadiyaram and Bovik,[2015](https://arxiv.org/html/2607.08109#bib.bib118)\), KonIQ10k\(Hosuet al\.,[2020](https://arxiv.org/html/2607.08109#bib.bib119)\), SPAQ\(Fanget al\.,[2020](https://arxiv.org/html/2607.08109#bib.bib43)\), and FLIVE\(Yinget al\.,[2020](https://arxiv.org/html/2607.08109#bib.bib9)\)\. The details are available in Appendix[B\.2](https://arxiv.org/html/2607.08109#A2.SS2)\.
Comparison with state\-of\-the\-art methods:We use Spearman’s rank order correlation coefficient \(SRCC\) and Pearson’s linear correlation coefficient \(PCC\) to assess perceptual ranking and linearity\. In Table[2](https://arxiv.org/html/2607.08109#S3.T2), ConOrd outperforms the existing methods in terms of both metrics on all five datasets with no exception\. Note that recent transformer\-based techniques QPT\(Zhaoet al\.,[2023](https://arxiv.org/html/2607.08109#bib.bib13)\), LoDa\(Xuet al\.,[2024](https://arxiv.org/html/2607.08109#bib.bib79)\), and QCN\(Shinet al\.,[2024](https://arxiv.org/html/2607.08109#bib.bib14)\), as well as the Mamba\-based method VISGA\(Shiet al\.,[2025](https://arxiv.org/html/2607.08109#bib.bib134)\), the unified multi\-modal quality assessment method UNQA\(Caoet al\.,[2025](https://arxiv.org/html/2607.08109#bib.bib135)\), and the rich subjective information\-based method RichIQA\(Minet al\.,[2025](https://arxiv.org/html/2607.08109#bib.bib136)\)achieve high performance through large\-scale pretraining, sophisticated network designs, or additional supervision\. Nevertheless, the proposed algorithm consistently outperforms these techniques meaningfully, confirming the effectiveness of contrastive order learning\.
Table 4:Comparison of different contrastive losses on the CLAP2015 and LSVQ\-1080p datasets under a controlled setting\. All methods use the same ViT\-B backbone, identical training protocol, and unifiedkk\-NN inference scheme\.
### 4\.3Blind Video Quality Assessment
Datasets:We evaluate ConOrd on five widely used BVQA benchmarks — LSVQ\(Yinget al\.,[2021](https://arxiv.org/html/2607.08109#bib.bib21)\), KoNViD\-1k\(Hosuet al\.,[2017](https://arxiv.org/html/2607.08109#bib.bib32)\), LIVE\-VQC\(Sinno and Bovik,[2018](https://arxiv.org/html/2607.08109#bib.bib127)\), CVD2014\(Nuutinenet al\.,[2016](https://arxiv.org/html/2607.08109#bib.bib113)\), and YouTube\-UGC\(Wanget al\.,[2019](https://arxiv.org/html/2607.08109#bib.bib33)\)\. For training, the LSVQ dataset is used\. For evaluation, intra\-dataset tests on LSVQ\-test and LSVQ\-1080p, as well as cross\-dataset evaluations on the remaining four datasets, are conducted\. More details on the datasets are in Appendix[B\.3](https://arxiv.org/html/2607.08109#A2.SS3)\.
Comparison with state\-of\-the\-art methods:Table[3](https://arxiv.org/html/2607.08109#S3.T3)presents a comprehensive comparison of ConOrd with state\-of\-the\-art BVQA methods\. Performance is measured using SRCC and PCC, as in BIQA\. Again, ConOrd consistently outperforms all conventional methods across all datasets, achieving the best SRCC and PCC scores\. While ModularBVQA uses three distinct backbone networks of ResNet\-18, SlowFast, and ViT\-B, ConOrd relies on only two backbones of SlowFast and ViT\-B\. Despite the usage of fewer backbones, ConOrd outperforms ModularBVQA meaningfully\. This indicates that ConOrd is capable of extracting more discriminative features with fewer computational resources, demonstrating its potential for practical deployment in real\-world BVQA applications\.

Figure 4:Visualization of feature ordinality\(Zhaet al\.,[2023](https://arxiv.org/html/2607.08109#bib.bib16)\)on the CLAP2015 dataset\.
### 4\.4Ablations and Analyses
Comparison of contrastive learning schemes:In Table[4](https://arxiv.org/html/2607.08109#S4.T4), we conduct a comparative analysis of both general\-purpose\(Khoslaet al\.,[2020](https://arxiv.org/html/2607.08109#bib.bib49)\)and ordinal\-regression\-oriented\(Zhaet al\.,[2023](https://arxiv.org/html/2607.08109#bib.bib16); Baeket al\.,[2024](https://arxiv.org/html/2607.08109#bib.bib85); Pitawelaet al\.,[2025](https://arxiv.org/html/2607.08109#bib.bib83)\)contrastive losses on the CLAP2015 and LSVQ\-1080p datasets under a fully controlled setting\. Specifically, all methods use the same ViT\-B backbone, identical training protocol, and unifiedkk\-NN inference scheme, so that the performance differences can be attributed to the loss formulation rather than architectural or evaluation discrepancies\.
LSupConL\_\{\\text\{SupCon\}\}yields weak performance, as it disregards the ordinal property of rank labels\.LOCL\_\{\\text\{OC\}\}shows slight improvements but remains limited, as it was primarily designed for medical diagnostic datasets with relatively few ordinal levels\. It does not scale effectively to tasks with many ordinal levels,e\.g\.,age estimation or BVQA\.LMMNP\+LCEL\_\{\\text\{MMNP\}\}\+L\_\{\\text\{CE\}\}achieves moderate correlation gains; however, its performance is inconsistent across metrics due to the complexity of joint margin optimization\.LRnCL\_\{\\text\{RnC\}\}benefits from its ordinal\-aware contrastive formulation and substantially outperforms these other existing losses\. Finally, the proposed loss in \([9](https://arxiv.org/html/2607.08109#S3.E9)\) achieves the best results overall, showing that the all\-pairs comparison through soft weighting helps learn better representations for ordinal regression\.
These findings are further supported by the feature similarity matrices in Figure[4](https://arxiv.org/html/2607.08109#S4.F4)\. As inZhaet al\.\([2023](https://arxiv.org/html/2607.08109#bib.bib16)\), the matrices are computed using the negative L2 norm between learned features on the CLAP2015 dataset\. Representations are sorted by ground\-truth ranks, so entries farther from the diagonal indicate larger rank differences\. Compared toLSupConL\_\{\\text\{SupCon\}\}andLRnCL\_\{\\text\{RnC\}\}, the proposed loss produces a clearer high\-similarity band along the diagonal, confirming that the learned representations reflect the underlying ordinal structure more faithfully\.
Table 5:Ablation study for the loss function in \([9](https://arxiv.org/html/2607.08109#S3.E9)\) on CLAP2015 and LSVQ\-1080p\.
Figure 5:t\-SNE\(Van der Maaten and Hinton,[2008](https://arxiv.org/html/2607.08109#bib.bib97)\)plots of the embedding spaces on LSVQ\-1080p\.
Figure 6:Comparison of the losses in \([2](https://arxiv.org/html/2607.08109#S3.E2)\) and \([3](https://arxiv.org/html/2607.08109#S3.E3)\) on CLAP2015 and AgeDB\-DIR\.Table 6:Comparison of alternative configurations ofLConOrdL\_\{\\text\{ConOrd\}\}in \([3](https://arxiv.org/html/2607.08109#S3.E3)\) on CLAP2015\.Ablation study of loss function:To assess the contribution of each component in \([9](https://arxiv.org/html/2607.08109#S3.E9)\), we conduct an ablation study in Table[5](https://arxiv.org/html/2607.08109#S4.T5)and visualize the embedding space for each ablated method in Figure[5](https://arxiv.org/html/2607.08109#S4.F5)\.LcenterL\_\{\\text\{center\}\}alone fails to capture the ordinal nature of the task\. WhileLConOrdL\_\{\\text\{ConOrd\}\}alone provides better results, its combination withLcenterL\_\{\\text\{center\}\}further improves the results as the intra\-class compactness is also considered\. Both quantitatively and visually, the combined loss yields the most favorable results\.
Alternative choices for loss function:We compare the behavior of the naive loss formulationLMAEL\_\{\\text\{MAE\}\}in \([2](https://arxiv.org/html/2607.08109#S3.E2)\) with that of the proposedLConOrdL\_\{\\text\{ConOrd\}\}in \([3](https://arxiv.org/html/2607.08109#S3.E3)\)\. As shown in Figure[6](https://arxiv.org/html/2607.08109#S4.F6), the positive logarithm inLMAEL\_\{\\text\{MAE\}\}may make the training less reliable, since the gradient magnitude may increase as the loss decreases\. It means that the optimization process may become unstable over time, ultimately degrading the effectiveness of learning\. Empirically,LConOrdL\_\{\\text\{ConOrd\}\}outperformsLMAEL\_\{\\text\{MAE\}\}on CLAP2015 and AgeDB\-DIR, confirming its improved stability\.
Also, to investigate the impacts of different design choices in \([3](https://arxiv.org/html/2607.08109#S3.E3)\), we perform an ablation study on CLAP2015 by varying the components ofLConOrdL\_\{\\text\{ConOrd\}\}\. The following observations can be made from the results in Table[6](https://arxiv.org/html/2607.08109#S4.T6)\. First, negative squared Euclidean distance forκij\\kappa\_\{ij\}consistently outperforms cosine similarity, suggesting that explicit distance\-based measures better reflect ordinal relations in the embedding space\. Second, method VIII, which incorporates squared differences into bothaija\_\{ij\}andbijb\_\{ij\}, achieves the lowest MAE of 2\.461\. This indicates that emphasizing larger ordinal gaps during the contrastive optimization enhances model sensitivity to ordinal labels and improves regression accuracy\. Method IX setsΔ\\Deltato 0 ifri=rjr\_\{i\}=r\_\{j\}, and to a positive threshold of 5 otherwise; these coarser approximations of ordinal differences are less effective than the proposed fine\-grained modeling of rank gaps\. Method X employs fully learnableaija\_\{ij\}andbijb\_\{ij\}and yields poor results, suggesting that explicit encoding of ordinal structure is more effective than unconstrained learnable parameters\. Appendix[•‣A](https://arxiv.org/html/2607.08109#A1.I1.i4)provides a gradient\-based justification for these configurations, while Appendix[15](https://arxiv.org/html/2607.08109#A3.T15)reports an extended table with additional configurations and results\.
## 5Conclusions
In this paper, we introduced contrastive order learning \(ConOrd\) as a general framework for ordinal regression that unifies order learning and contrastive learning within a single batch\-wise formulation\. By revisiting contrastive learning from an ordinal perspective, ConOrd incorporates rank\-aware attraction and repulsion through soft affinity and disparity weights, enabling all sample pairs in a batch to contribute to learning in a principled and stable manner\. We presented a simple yet effective instantiation of this framework\. Through extensive experiments on diverse ordinal regression tasks, including facial age estimation, blind image quality assessment, and blind video quality assessment, we demonstrated that ConOrd consistently achieves strong performance and competitive generalization across benchmarks\. We believe that contrastive order learning provides a flexible foundation for future advances in ordinal representation learning\.
## Impact Statement
This work proposes a general method for ordinal regression that demonstrates strong performance across tasks, including facial age estimation, blind image quality assessment, and blind video quality assessment\. However, caution is needed when deploying such models in sensitive domains\. If used without appropriate safeguards, predictions involving human or facial attributes may raise ethical concerns, especially in the presence of biases within the training data\. We recommend that future deployments incorporate fair evaluations and that the model be used as a decision\-support tool rather than as an autonomous system\.
## Acknowledgements
This work was supported by the National Research Foundation of Korea \(NRF\) funded by the Korea Government \(MSIT\) \(No\. RS\-2024\-00397293, RS\-2022\-NR068986\), and by the AI Computing Infrastructure Enhancement \(GPU Rental Support\) User Support Program funded by MSIT \(No\. RQT\-25\-090187\)\.
## References
- E\. Amigó, J\. Gonzalo, S\. Mizzaro, and J\. Carrillo\-de\-Albornoz \(2020\)An effectiveness metric for ordinal classification: formal properties and experimental results\.arXiv preprint arXiv:2006\.01245\.Cited by:[§2\.1](https://arxiv.org/html/2607.08109#S2.SS1.p2.1)\.
- S\. Baek, J\. Sim, G\. Wu, and W\. H\. Kim \(2024\)OCL: ordinal contrastive learning for imputating features with progressive labels\.InProc\. MICCAI,Cited by:[§2\.3](https://arxiv.org/html/2607.08109#S2.SS3.p3.1),[§4\.4](https://arxiv.org/html/2607.08109#S4.SS4.p1.1),[Table 4](https://arxiv.org/html/2607.08109#S4.T4.7.5.5.5.1)\.
- H\. Basak and Z\. Yin \(2023\)Pseudo\-label guided contrastive learning for semi\-supervised medical image segmentation\.InProc\. CVPR,Cited by:[§2\.3](https://arxiv.org/html/2607.08109#S2.SS3.p3.1)\.
- A\. Berg, M\. Oskarsson, and M\. O’Connor \(2021\)Deep ordinal regression with label diversity\.InProc\. ICPR,Cited by:[4th item](https://arxiv.org/html/2607.08109#A2.I1.i4.p1.1)\.
- Y\. Cao, X\. Min, Y\. Gao, W\. Sun, L\. Ye, W\. Lin, and G\. Zhai \(2025\)UNQA: unified no\-reference quality assessment for audio, image, video, and audio\-visual content\.IEEE Trans\. Circuits Syst\. Video Technol\.\.Cited by:[Table 2](https://arxiv.org/html/2607.08109#S3.T2.4.1.18.16.1),[§4\.2](https://arxiv.org/html/2607.08109#S4.SS2.p2.1)\.
- M\. Caron, I\. Misra, J\. Mairal, P\. Goyal, P\. Bojanowski, and A\. Joulin \(2020\)Unsupervised learning of visual features by contrasting cluster assignments\.InProc\. NeurIPS,Cited by:[3rd item](https://arxiv.org/html/2607.08109#S3.I1.i3.p1.5)\.
- D\. Cer, M\. Diab, E\. Agirre, I\. Lopez\-Gazpio, and L\. Specia \(2017\)SemEval\-2017 task 1: semantic textual similarity multilingual and crosslingual focused evaluation\.InProceedings of the 11th international workshop on semantic evaluation,Cited by:[2nd item](https://arxiv.org/html/2607.08109#A3.I2.i2.p1.1)\.
- K\. Chang, C\. Chen, and Y\. Hung \(2011\)Ordinal hyperplanes ranker with cost sensitivities for age estimation\.InProc\. CVPR,Cited by:[1st item](https://arxiv.org/html/2607.08109#A2.I1.i1.p1.1)\.
- B\. Chen, C\. Chen, and W\. H\. Hsu \(2015\)Face recognition and retrieval using cross\-age reference coding with cross\-age celebrity dataset\.IEEE Trans\. Multimedia\.Cited by:[5th item](https://arxiv.org/html/2607.08109#A2.I1.i5.p1.1),[§4\.1](https://arxiv.org/html/2607.08109#S4.SS1.p1.1)\.
- S\. Chen, C\. Zhang, M\. Dong, J\. Le, and M\. Rao \(2017\)Using ranking\-CNN for age estimation\.InProc\. CVPR,Cited by:[§2\.1](https://arxiv.org/html/2607.08109#S2.SS1.p2.1)\.
- T\. Chen, S\. Kornblith, M\. Norouzi, and G\. Hinton \(2020\)A simple framework for contrastive learning of visual representations\.InProc\. ICML,Cited by:[§2\.3](https://arxiv.org/html/2607.08109#S2.SS3.p1.1),[3rd item](https://arxiv.org/html/2607.08109#S3.I1.i3.p1.5)\.
- W\. Chu, K\. Ho, and A\. Borji \(2018\)Visual weather temperature prediction\.InProc\. WACV,Cited by:[1st item](https://arxiv.org/html/2607.08109#A3.I1.i1.p1.1)\.
- A\. Ciancio, A\. L\. N\. T\. Targino da Costa, E\. A\. B\. da Silva, A\. Said, R\. Samadani, and P\. Obrador \(2010\)No\-reference blur assessment of digital pictures based on multifeature classifiers\.IEEE Trans\. Image Proc\.\.Cited by:[1st item](https://arxiv.org/html/2607.08109#A2.I2.i1.p1.1),[§4\.2](https://arxiv.org/html/2607.08109#S4.SS2.p1.1)\.
- Z\. Deng, H\. Liu, Y\. Wang, C\. Wang, Z\. Yu, and X\. Sun \(2021\)PML: Progressive margin loss for long\-tailed age classification\.InProc\. CVPR,Cited by:[Table 1](https://arxiv.org/html/2607.08109#S3.T1.4.1.3.2.1)\.
- R\. Diaz and A\. Marathe \(2019\)Soft labels for ordinal regression\.InProc\. CVPR,Cited by:[§1](https://arxiv.org/html/2607.08109#S1.p2.1),[§2\.1](https://arxiv.org/html/2607.08109#S2.SS1.p1.1)\.
- Z\. Dong, Y\. Wu, C\. Chen, Y\. Zou, Y\. Zhang, and J\. H\. Zhou \(2025\)Improve representation for imbalanced regression through geometric constraints\.InProc\. CVPR,Cited by:[Table 10](https://arxiv.org/html/2607.08109#A3.T10.4.11.6.1),[Table 11](https://arxiv.org/html/2607.08109#A3.T11.4.10.5.1)\.
- Y\. Du, Q\. Zhai, W\. Dai, and X\. Li \(2024\)Teach CLIP to develop a number sense for ordinal regression\.InProc\. ECCV,Cited by:[Table 1](https://arxiv.org/html/2607.08109#S3.T1.4.1.11.10.1),[§4\.1](https://arxiv.org/html/2607.08109#S4.SS1.p2.1)\.
- D\. A\. Engemann, A\. Mellot, R\. Höchenberger, H\. Banville, D\. Sabbagh, L\. Gemein, and A\. Gramfort \(2022\)A reusable benchmark of brain\-age prediction from M/EEG resting\-state signals\.NeuroImage\.Cited by:[§1](https://arxiv.org/html/2607.08109#S1.p1.1)\.
- S\. Escalera, J\. Fabian, P\. Pardo, X\. Baró, J\. Gonzàlez, H\. J\. Escalante, D\. Misevic, U\. Steiner, and I\. Guyon \(2015\)ChaLearn looking at people 2015: Apparent age and cultural event recognition datasets and results\.InProc\. ICCV Workshops,Cited by:[2nd item](https://arxiv.org/html/2607.08109#A2.I1.i2.p1.1),[§4\.1](https://arxiv.org/html/2607.08109#S4.SS1.p1.1)\.
- Y\. Fang, H\. Zhu, Y\. Zeng, K\. Ma, and Z\. Wang \(2020\)Perceptual quality assessment of smartphone photography\.InProc\. CVPR,Cited by:[4th item](https://arxiv.org/html/2607.08109#A2.I2.i4.p1.1),[§4\.2](https://arxiv.org/html/2607.08109#S4.SS2.p1.1)\.
- C\. Feichtenhofer, H\. Fan, J\. Malik, and K\. He \(2019\)Slowfast networks for video recognition\.InProc\. ICCV,Cited by:[§B\.3](https://arxiv.org/html/2607.08109#A2.SS3.p3.10)\.
- E\. Frank and M\. Hall \(2001\)A simple approach to ordinal classification\.InProc\. ECML,Cited by:[§2\.1](https://arxiv.org/html/2607.08109#S2.SS1.p1.1)\.
- H\. Fu, M\. Gong, C\. Wang, K\. Batmanghelich, and D\. Tao \(2018\)Deep ordinal regression network for monocular depth estimation\.InProc\. CVPR,Cited by:[§2\.1](https://arxiv.org/html/2607.08109#S2.SS1.p1.1)\.
- B\. Gao, H\. Zhou, J\. Wu, and X\. Geng \(2018\)Age estimation using expectation of label distribution learning\.\.InProc\. IJCAI,Cited by:[Table 9](https://arxiv.org/html/2607.08109#A3.T9.2.2.6.3.1)\.
- X\. Geng, C\. Yin, and Z\. Zhou \(2013\)Facial age estimation by learning from label distributions\.IEEE Trans\. Pattern Anal\. Mach\. Intell\.\.Cited by:[§1](https://arxiv.org/html/2607.08109#S1.p2.1),[§2\.1](https://arxiv.org/html/2607.08109#S2.SS1.p1.1)\.
- D\. Ghadiyaram and A\. C\. Bovik \(2015\)Massive online crowdsourced study of subjective and objective picture quality\.IEEE Trans\. Image Proc\.\.Cited by:[2nd item](https://arxiv.org/html/2607.08109#A2.I2.i2.p1.1),[§4\.2](https://arxiv.org/html/2607.08109#S4.SS2.p1.1)\.
- S\. A\. Golestaneh, S\. Dadsetan, and K\. M\. Kitani \(2022\)No\-reference image quality assessment via transformers, relative ranking, and self\-consistency\.InProc\. WACV,Cited by:[Table 2](https://arxiv.org/html/2607.08109#S3.T2.4.1.10.8.1)\.
- Y\. Gong, G\. Mori, and F\. Tung \(2022\)RankSim: ranking similarity regularization for deep imbalanced regression\.InProc\. ICML,Cited by:[Table 10](https://arxiv.org/html/2607.08109#A3.T10.4.6.1.1),[Table 11](https://arxiv.org/html/2607.08109#A3.T11.4.6.1.1),[Table 1](https://arxiv.org/html/2607.08109#S3.T1.4.1.6.5.1)\.
- F\. Guan, X\. Li, Z\. Yu, Y\. Lu, and Z\. Chen \(2024\)Q\-Mamba: on first exploration of vision Mamba for image quality assessment\.arXiv preprint arXiv:2406\.09546\.Cited by:[Table 32](https://arxiv.org/html/2607.08109#A3.T32.6.3.2.1.1.1),[Table 2](https://arxiv.org/html/2607.08109#S3.T2.4.1.14.12.1)\.
- F\. K\. Gustafsson, M\. Danelljan, G\. Bhat, and T\. B\. Schön \(2020\)Energy\-based models for deep probabilistic regression\.InProc\. ECCV,Cited by:[4th item](https://arxiv.org/html/2607.08109#A2.I1.i4.p1.1)\.
- K\. He, H\. Fan, Y\. Wu, S\. Xie, and R\. Girshick \(2020\)Momentum contrast for unsupervised visual representation learning\.InProc\. CVPR,Cited by:[§2\.3](https://arxiv.org/html/2607.08109#S2.SS3.p1.1),[3rd item](https://arxiv.org/html/2607.08109#S3.I1.i3.p1.5)\.
- K\. He, X\. Zhang, S\. Ren, and J\. Sun \(2016\)Deep residual learning for image recognition\.InProc\. CVPR,Cited by:[§C\.1](https://arxiv.org/html/2607.08109#A3.SS1.p3.1)\.
- D\. Hendrycks and T\. Dietterich \(2019\)Benchmarking neural network robustness to common corruptions and perturbations\.InICLR,Cited by:[§C\.4](https://arxiv.org/html/2607.08109#A3.SS4.p7.1)\.
- V\. Hosu, F\. Hahn, M\. Jenadeleh, H\. Lin, H\. Men, T\. Szirányi, S\. Li, and D\. Saupe \(2017\)The Konstanz natural video database \(KoNViD\-1k\)\.InProc\. QoMEX,Cited by:[2nd item](https://arxiv.org/html/2607.08109#A2.I3.i2.p1.1),[§1](https://arxiv.org/html/2607.08109#S1.p1.1),[§4\.3](https://arxiv.org/html/2607.08109#S4.SS3.p1.1)\.
- V\. Hosu, T\. Lin, T\. Sziranyi, and D\. Saupe \(2020\)KonIQ\-10k: An ecologically valid database for deep learning of blind image quality assessment\.IEEE Trans\. Image Proc\.\.Cited by:[3rd item](https://arxiv.org/html/2607.08109#A2.I2.i3.p1.1),[§4\.2](https://arxiv.org/html/2607.08109#S4.SS2.p1.1)\.
- J\. Hu, M\. Ozay, Y\. Zhang, and T\. Okatani \(2019\)Revisiting single image depth estimation: toward higher resolution maps with accurate object boundaries\.InProc\. WACV,Cited by:[3rd item](https://arxiv.org/html/2607.08109#A3.I2.i3.p1.1),[§C\.2](https://arxiv.org/html/2607.08109#A3.SS2.p4.1)\.
- G\. Huang, Y\. Li, G\. Pleiss, Z\. Liu, J\. E\. Hopcroft, and K\. Q\. Weinberger \(2017\)Snapshot ensembles: train 1, get m for free\.InProc\. ICLR,Cited by:[§B\.1](https://arxiv.org/html/2607.08109#A2.SS1.p2.1)\.
- J\. Ke, Q\. Wang, Y\. Wang, P\. Milanfar, and F\. Yang \(2021\)MUSIQ: Multi\-scale image quality transformer\.InProc\. ICCV,Cited by:[Table 2](https://arxiv.org/html/2607.08109#S3.T2.4.1.9.7.1)\.
- M\. Keramati, L\. Meng, and R\. D\. Evans \(2024\)ConR: contrastive regularizer for deep imbalanced regression\.InProc\. ICLR,Cited by:[Table 10](https://arxiv.org/html/2607.08109#A3.T10.4.10.5.1),[Table 11](https://arxiv.org/html/2607.08109#A3.T11.4.9.4.1)\.
- P\. Khosla, P\. Teterwak, C\. Wang, A\. Sarna, Y\. Tian, P\. Isola, A\. Maschinot, C\. Liu, and D\. Krishnan \(2020\)Supervised contrastive learning\.InProc\. NeurIPS,Cited by:[Figure 1](https://arxiv.org/html/2607.08109#S1.F1),[Figure 1](https://arxiv.org/html/2607.08109#S1.F1.6.2),[§1](https://arxiv.org/html/2607.08109#S1.p3.1),[§2\.3](https://arxiv.org/html/2607.08109#S2.SS3.p2.1),[3rd item](https://arxiv.org/html/2607.08109#S3.I1.i3.p1.5),[§3\.1](https://arxiv.org/html/2607.08109#S3.SS1.p3.2),[§4\.4](https://arxiv.org/html/2607.08109#S4.SS4.p1.1),[Table 4](https://arxiv.org/html/2607.08109#S4.T4.6.4.4.4.1)\.
- D\. P\. Kingma and J\. Ba \(2015\)Adam: a method for stochastic optimization\.InProc\. ICLR,Cited by:[§B\.1](https://arxiv.org/html/2607.08109#A2.SS1.p2.1)\.
- J\. Korhonen \(2019\)Two\-level approach for no\-reference consumer video quality assessment\.IEEE Trans\. Image Proc\.\.Cited by:[Table 3](https://arxiv.org/html/2607.08109#S3.T3.4.1.3.1.1)\.
- S\. Lee and C\. Kim \(2021\)Deep repulsive clustering of ordered data based on order\-identity decomposition\.InProc\. ICLR,Cited by:[§1](https://arxiv.org/html/2607.08109#S1.p2.1),[§2\.2](https://arxiv.org/html/2607.08109#S2.SS2.p1.1),[§2\.2](https://arxiv.org/html/2607.08109#S2.SS2.p2.1)\.
- S\. Lee and C\. Kim \(2022\)Order learning using partially ordered data via chainization\.InProc\. ECCV,Cited by:[§2\.2](https://arxiv.org/html/2607.08109#S2.SS2.p1.1)\.
- S\. Lee, N\. Shin, and C\. Kim \(2022\)Geometric order learning for rank estimation\.InProc\. NeurIPS,Cited by:[§1](https://arxiv.org/html/2607.08109#S1.p2.1),[§1](https://arxiv.org/html/2607.08109#S1.p4.1),[§2\.2](https://arxiv.org/html/2607.08109#S2.SS2.p2.1),[1st item](https://arxiv.org/html/2607.08109#S3.I1.i1.p1.8),[§3\.1](https://arxiv.org/html/2607.08109#S3.SS1.p1.14),[§3\.2](https://arxiv.org/html/2607.08109#S3.SS2.p2.1),[§3\.3](https://arxiv.org/html/2607.08109#S3.SS3.p3.7),[Table 1](https://arxiv.org/html/2607.08109#S3.T1.4.1.5.4.1)\.
- S\. Lee, N\. Shin, and C\. Kim \(2024\)Unsupervised order learning\.InProc\. ICLR,Cited by:[§2\.2](https://arxiv.org/html/2607.08109#S2.SS2.p1.1)\.
- G\. Levi and T\. Hassner \(2015\)Age and gender classification using convolutional neural networks\.InProc\. CVPR,Cited by:[6th item](https://arxiv.org/html/2607.08109#A2.I1.i6.p1.1),[§4\.1](https://arxiv.org/html/2607.08109#S4.SS1.p1.1)\.
- B\. Li, W\. Zhang, M\. Tian, G\. Zhai, and X\. Wang \(2022a\)Blindly assess quality of in\-the\-wild videos via quality\-aware pre\-training and motion perception\.IEEE Trans\. Circuits Syst\. Video Technol\.\.Cited by:[Table 3](https://arxiv.org/html/2607.08109#S3.T3.4.1.7.5.1)\.
- D\. Li, T\. Jiang, and M\. Jiang \(2019\)Quality assessment of in\-the\-wild videos\.InProc\. ACM Multimedia,Cited by:[Table 3](https://arxiv.org/html/2607.08109#S3.T3.4.1.4.2.1)\.
- D\. Li, T\. Jiang, W\. Lin, and M\. Jiang \(2018\)Which has better visual quality: the clear blue sky or a blurry animal?\.IEEE Trans\. Multimedia\.Cited by:[Table 2](https://arxiv.org/html/2607.08109#S3.T2.4.1.4.2.1)\.
- L\. Li and H\. Lin \(2007\)Ordinal regression by extended binary classification\.InProc\. NeurIPS,Cited by:[§1](https://arxiv.org/html/2607.08109#S1.p2.1),[§2\.1](https://arxiv.org/html/2607.08109#S2.SS1.p1.1)\.
- W\. Li, X\. Huang, J\. Lu, J\. Feng, and J\. Zhou \(2021\)Learning probabilistic ordinal embeddings for uncertainty\-aware regression\.InProc\. CVPR,Cited by:[§2\.1](https://arxiv.org/html/2607.08109#S2.SS1.p1.1),[Table 1](https://arxiv.org/html/2607.08109#S3.T1.4.1.2.1.1)\.
- W\. Li, X\. Huang, Z\. Zhu, Y\. Tang, X\. Li, J\. Zhou, and J\. Lu \(2022b\)OrdinalCLIP: learning rank prompts for language\-guided ordinal regression\.InProc\. NeurIPS,Cited by:[Table 1](https://arxiv.org/html/2607.08109#S3.T1.4.1.7.6.1)\.
- K\. Lim, N\. Shin, Y\. Lee, and C\. Kim \(2020\)Order learning and its application to age estimation\.InProc\. ICLR,Cited by:[§1](https://arxiv.org/html/2607.08109#S1.p2.1),[§2\.2](https://arxiv.org/html/2607.08109#S2.SS2.p1.1),[§2\.2](https://arxiv.org/html/2607.08109#S2.SS2.p2.1)\.
- W\. Liu, D\. Ferstl, S\. Schulter, L\. Zebedin, P\. Fua, and C\. Leistner \(2021\)Domain adaptation for semantic segmentation via patch\-wise contrastive learning\.arXiv preprint arXiv:2104\.11056\.Cited by:[§2\.3](https://arxiv.org/html/2607.08109#S2.SS3.p3.1)\.
- X\. Liu, Y\. Zou, Y\. Song, C\. Yang, J\. You, and B\. K\. Vijaya Kumar \(2018\)Ordinal regression with neuron stick\-breaking for medical diagnosis\.InProc\. ECCV,Cited by:[§2\.1](https://arxiv.org/html/2607.08109#S2.SS1.p1.1)\.
- I\. Loshchilov and F\. Hutter \(2016\)SGDR: Stochastic gradient descent with warm restarts\.arXiv preprint arXiv:1608\.03983\.Cited by:[§B\.2](https://arxiv.org/html/2607.08109#A2.SS2.p3.2)\.
- I\. Loshchilov and F\. Hutter \(2017\)Decoupled weight decay regularization\.arXiv preprint arXiv:1711\.05101\.Cited by:[§B\.2](https://arxiv.org/html/2607.08109#A2.SS2.p3.2)\.
- Y\. Lu, X\. Li, Y\. Pei, K\. Yuan, Q\. Xie, Y\. Qu, M\. Sun, C\. Zhou, and Z\. Chen \(2024\)KVQ: Kwai video quality assessment for short\-form videos\.InProc\. CVPR,Cited by:[Table 3](https://arxiv.org/html/2607.08109#S3.T3.4.1.11.9.1)\.
- P\. C\. Madhusudana, N\. Birkbeck, Y\. Wang, B\. Adsumilli, and A\. C\. Bovik \(2022\)Image quality assessment using contrastive learning\.IEEE Trans\. Image Proc\.\.Cited by:[Table 2](https://arxiv.org/html/2607.08109#S3.T2.4.1.11.9.1)\.
- R\. Mihail, S\. Workman, Z\. Bessinger, and N\. Jacobs \(2016\)Sky segmentation in the wild: an empirical study\.InProc\. WACV,Cited by:[1st item](https://arxiv.org/html/2607.08109#A3.I1.i1.p1.1)\.
- X\. Min, Y\. Gao, Y\. Cao, G\. Zhai, W\. Zhang, H\. Sun, and C\. W\. Chen \(2025\)Exploring rich subjective quality information for image quality assessment in the wild\.IEEE Trans\. Circuits Syst\. Video Technol\.\.Cited by:[Table 2](https://arxiv.org/html/2607.08109#S3.T2.4.1.19.17.1),[§4\.2](https://arxiv.org/html/2607.08109#S4.SS2.p2.1)\.
- X\. Min, G\. Zhai, K\. Gu, Y\. Liu, and X\. Yang \(2018\)Blind image quality estimation via distortion aggravation\.IEEE Trans\. Broadcasting\.Cited by:[Table 2](https://arxiv.org/html/2607.08109#S3.T2.4.1.3.1.1)\.
- S\. Moschoglou, A\. Papaioannou, C\. Sagonas, J\. Deng, I\. Kotsia, and S\. Zafeiriou \(2017\)AgeDB: the first manually collected, in\-the\-wild age database\.InProc\. CVPR,Cited by:[3rd item](https://arxiv.org/html/2607.08109#A2.I1.i3.p1.1),[§1](https://arxiv.org/html/2607.08109#S1.p1.1),[§4\.1](https://arxiv.org/html/2607.08109#S4.SS1.p1.1)\.
- I\. Nachmani, B\. Genossar, C\. Scharf, R\. Shraga, and A\. Gal \(2025\)SLACE: a monotone and balance\-sensitive loss function for ordinal regression\.InProc\. AAAI,Cited by:[§2\.1](https://arxiv.org/html/2607.08109#S2.SS1.p2.1),[Table 1](https://arxiv.org/html/2607.08109#S3.T1.4.1.13.12.1)\.
- B\. Nguyen, C\. Morell, and B\. De Baets \(2018\)Distance metric learning for ordinal classification based on triplet constraints\.Knowledge\-Based Systems\.Cited by:[§3\.3](https://arxiv.org/html/2607.08109#S3.SS3.p1.3)\.
- Z\. Niu, M\. Zhou, L\. Wang, X\. Gao, and G\. Hua \(2016\)Ordinal regression with multiple output CNN for age estimation\.InProc\. CVPR,Cited by:[Table 9](https://arxiv.org/html/2607.08109#A3.T9.2.2.5.2.1),[§2\.1](https://arxiv.org/html/2607.08109#S2.SS1.p2.1)\.
- M\. Nuutinen, T\. Virtanen, M\. Vaahteranoksa, T\. Vuori, P\. Oittinen, and J\. Häkkinen \(2016\)CVD2014—A database for evaluating no\-reference video quality assessment algorithms\.IEEE Trans\. Image Proc\.\.Cited by:[4th item](https://arxiv.org/html/2607.08109#A2.I3.i4.p1.1),[§4\.3](https://arxiv.org/html/2607.08109#S4.SS3.p1.1)\.
- H\. Pan, H\. Han, S\. Shan, and X\. Chen \(2018\)Mean\-variance loss for deep age estimation from a face\.InProc\. CVPR,Cited by:[§2\.1](https://arxiv.org/html/2607.08109#S2.SS1.p1.1)\.
- D\. Pitawela, G\. Carneiro, and H\. Chen \(2025\)CLOC: contrastive learning for ordinal classification with multi\-margin n\-pair loss\.InProc\. CVPR,Cited by:[§2\.3](https://arxiv.org/html/2607.08109#S2.SS3.p3.1),[Table 1](https://arxiv.org/html/2607.08109#S3.T1.4.1.12.11.1),[§4\.4](https://arxiv.org/html/2607.08109#S4.SS4.p1.1),[Table 4](https://arxiv.org/html/2607.08109#S4.T4.8.6.6.6.1)\.
- A\. Radford, J\. W\. Kim, C\. Hallacy, A\. Ramesh, G\. Goh, S\. Agarwal, G\. Sastry, A\. Askell, P\. Mishkin, J\. Clark, G\. Krueger, and I\. Sutskever \(2021\)Learning transferable visual models from natural language supervision\.InProc\. ICML,Cited by:[§B\.1](https://arxiv.org/html/2607.08109#A2.SS1.p2.1),[§B\.2](https://arxiv.org/html/2607.08109#A2.SS2.p3.2),[§4\.1](https://arxiv.org/html/2607.08109#S4.SS1.p2.1)\.
- J\. D\. Rennie and N\. Srebro \(2005\)Loss functions for preference levels: regression with discrete ordered labels\.InProc\. IJCAI Workshop on Advances in Preference Handling,Cited by:[§2\.1](https://arxiv.org/html/2607.08109#S2.SS1.p1.1)\.
- K\. Ricanek and T\. Tesafaye \(2006\)MORPH: A longitudinal image database of normal adult age\-progression\.InProc\. IEEE Int\. Conf\. on Automatic Face and Gesture Recognition,Cited by:[1st item](https://arxiv.org/html/2607.08109#A2.I1.i1.p1.1),[§4\.1](https://arxiv.org/html/2607.08109#S4.SS1.p1.1)\.
- R\. Rothe, R\. Timofte, and L\. Van Gool \(2015\)DEX: Deep expectation of apparent age from a single image\.InProc\. ICCV,Cited by:[Table 9](https://arxiv.org/html/2607.08109#A3.T9.2.2.4.1.1)\.
- R\. Rothe, R\. Timofte, and L\. Van Gool \(2018\)Deep expectation of real and apparent age from a single image without facial landmarks\.Int\. J\. Comput\. Vis\.\.Cited by:[1st item](https://arxiv.org/html/2607.08109#A3.I2.i1.p1.1),[§1](https://arxiv.org/html/2607.08109#S1.p2.1),[§2\.1](https://arxiv.org/html/2607.08109#S2.SS1.p1.1)\.
- A\. Saha, S\. Mishra, and A\. C\. Bovik \(2023\)Re\-IQA: Unsupervised learning for image quality assessment in the wild\.InProc\. CVPR,Cited by:[Table 32](https://arxiv.org/html/2607.08109#A3.T32.6.2.1.1.1.1),[Table 2](https://arxiv.org/html/2607.08109#S3.T2.4.1.12.10.1)\.
- H\. Shi, W\. Xie, H\. Qin, Y\. Li, and L\. Fang \(2025\)Visual state space model with graph\-based feature aggregation for blind image quality assessment\.IEEE Trans\. Circuits Syst\. Video Technol\.\.Cited by:[Table 2](https://arxiv.org/html/2607.08109#S3.T2.4.1.17.15.1),[§4\.2](https://arxiv.org/html/2607.08109#S4.SS2.p2.1)\.
- X\. Shi, W\. Cao, and S\. Raschka \(2023\)Deep neural networks for rank\-consistent ordinal regression based on conditional probabilities\.Pattern Analysis and Applications\.Cited by:[Table 9](https://arxiv.org/html/2607.08109#A3.T9.2.2.7.4.1)\.
- Y\. Shi, W\. Li, and F\. Sha \(2016\)Metric learning for ordinal data\.InProc\. AAAI,Cited by:[§2\.1](https://arxiv.org/html/2607.08109#S2.SS1.p2.1)\.
- N\. Shin, S\. Lee, and C\. Kim \(2022\)Moving window regression: A novel approach to ordinal regression\.InProc\. CVPR,Cited by:[5th item](https://arxiv.org/html/2607.08109#A2.I1.i5.p1.1),[§2\.2](https://arxiv.org/html/2607.08109#S2.SS2.p1.1),[§2\.2](https://arxiv.org/html/2607.08109#S2.SS2.p2.1),[Table 1](https://arxiv.org/html/2607.08109#S3.T1.4.1.4.3.1)\.
- N\. Shin, S\. Lee, and C\. Kim \(2024\)Blind image quality assessment based on geometric order learning\.InProc\. CVPR,Cited by:[§B\.2](https://arxiv.org/html/2607.08109#A2.SS2.p1.1),[§C\.5](https://arxiv.org/html/2607.08109#A3.SS5.p6.1),[Table 31](https://arxiv.org/html/2607.08109#A3.T31.2.2.4),[Table 32](https://arxiv.org/html/2607.08109#A3.T32.6.4.3.1.1.1),[Table 2](https://arxiv.org/html/2607.08109#S3.T2.4.1.16.14.1),[§4\.2](https://arxiv.org/html/2607.08109#S4.SS2.p2.1)\.
- N\. Silberman, D\. Hoiem, P\. Kohli, and R\. Fergus \(2012\)Indoor segmentation and support inference from rgbd images\.InProc\. ECCV,Cited by:[3rd item](https://arxiv.org/html/2607.08109#A3.I2.i3.p1.1)\.
- Z\. Sinno and A\. C\. Bovik \(2018\)Large\-scale study of perceptual video quality\.IEEE Trans\. Image Proc\.\.Cited by:[3rd item](https://arxiv.org/html/2607.08109#A2.I3.i3.p1.1),[§4\.3](https://arxiv.org/html/2607.08109#S4.SS3.p1.1)\.
- S\. Su, Q\. Yan, Y\. Zhu, C\. Zhang, X\. Ge, J\. Sun, and Y\. Zhang \(2020\)Blindly assess image quality in the wild guided by a self\-adaptive hyper network\.InProc\. CVPR,Cited by:[Table 2](https://arxiv.org/html/2607.08109#S3.T2.4.1.7.5.1)\.
- W\. Sun, X\. Min, W\. Lu, and G\. Zhai \(2022\)A deep learning based no\-reference quality assessment model for UGC videos\.InProc\. ACM Multimedia,Cited by:[Table 3](https://arxiv.org/html/2607.08109#S3.T3.4.1.8.6.1)\.
- B\. Thomee, D\. A\. Shamma, G\. Friedland, B\. Elizalde, K\. Ni, D\. Poland, D\. Borth, and L\. Li \(2016\)YFCC100M: the new data in multimedia research\.Communications of the ACM\.Cited by:[3rd item](https://arxiv.org/html/2607.08109#A2.I2.i3.p1.1),[2nd item](https://arxiv.org/html/2607.08109#A2.I3.i2.p1.1)\.
- Z\. Tu, Y\. Wang, N\. Birkbeck, B\. Adsumilli, and A\. C\. Bovik \(2021\)UGC\-VQA: benchmarking blind video quality assessment for user generated content\.IEEE Trans\. Image Proc\.\.Cited by:[Table 3](https://arxiv.org/html/2607.08109#S3.T3.4.1.5.3.1)\.
- L\. Van der Maaten and G\. Hinton \(2008\)Visualizing data using t\-SNE\.\.Journal of machine learning research\.Cited by:[Figure 5](https://arxiv.org/html/2607.08109#S4.F5),[Figure 5](https://arxiv.org/html/2607.08109#S4.F5.4.2)\.
- A\. Wang, A\. Singh, J\. Michael, F\. Hill, O\. Levy, and S\. R\. Bowman \(2018\)GLUE: a multi\-task benchmark and analysis platform for natural language understanding\.Inemnlp,Cited by:[§C\.2](https://arxiv.org/html/2607.08109#A3.SS2.p4.1)\.
- R\. Wang, P\. P\. Li, H\. Huang, C\. Cao, R\. He, and Z\. He \(2023\)Learning\-to\-Rank meets language: boosting language\-driven ordering alignment for ordinal classification\.InProc\. NeurIPS,Cited by:[Table 1](https://arxiv.org/html/2607.08109#S3.T1.4.1.10.9.1),[§4\.1](https://arxiv.org/html/2607.08109#S4.SS1.p2.1)\.
- Y\. Wang, S\. Inguva, and B\. Adsumilli \(2019\)YouTube UGC dataset for video compression research\.InProc\. MMSP,Cited by:[5th item](https://arxiv.org/html/2607.08109#A2.I3.i5.p1.1),[§4\.3](https://arxiv.org/html/2607.08109#S4.SS3.p1.1)\.
- Y\. Wang, Y\. Jiang, J\. Li, B\. Ni, W\. Dai, C\. Li, and T\. Li \(2022\)Contrastive regression for domain adaptation on gaze estimation\.InProc\. CVPR,Cited by:[§1](https://arxiv.org/html/2607.08109#S1.p1.1)\.
- Z\. Wang and H\. Wang \(2023\)Variational imbalanced regression: fair uncertainty quantification via probabilistic smoothing\.Proc\. NeurIPS\.Cited by:[Table 10](https://arxiv.org/html/2607.08109#A3.T10.4.9.4.1)\.
- W\. Wen, M\. Li, Y\. Zhang, Y\. Liao, J\. Li, L\. Zhang, and K\. Ma \(2024\)Modular blind video quality assessment\.InProc\. CVPR,Cited by:[Table 3](https://arxiv.org/html/2607.08109#S3.T3.4.1.12.10.1)\.
- B\. Wu, X\. Sun, L\. Hu, and Y\. Wang \(2019\)Learning with unsure data for medical image diagnosis\.InProc\. ICCV,Cited by:[§2\.1](https://arxiv.org/html/2607.08109#S2.SS1.p1.1)\.
- H\. Wu, C\. Chen, J\. Hou, L\. Liao, A\. Wang, W\. Sun, Q\. Yan, and W\. Lin \(2022\)FAST\-VQA: efficient end\-to\-end video quality assessment with fragment sampling\.InProc\. ECCV,Cited by:[Table 3](https://arxiv.org/html/2607.08109#S3.T3.4.1.9.7.1)\.
- H\. Wu, E\. Zhang, L\. Liao, C\. Chen, J\. Hou, A\. Wang, W\. Sun, Q\. Yan, and W\. Lin \(2023\)Exploring video quality assessment on user generated contents from aesthetic and technical perspectives\.InProc\. ICCV,Cited by:[Table 3](https://arxiv.org/html/2607.08109#S3.T3.4.1.10.8.1)\.
- E\. Xie, J\. Ding, W\. Wang, X\. Zhan, H\. Xu, P\. Sun, and P\. Luo \(2021\)DetCo: unsupervised contrastive learning for object detection\.InProc\. ICCV,Cited by:[§2\.3](https://arxiv.org/html/2607.08109#S2.SS3.p3.1)\.
- K\. Xu, L\. Liao, J\. Xiao, C\. Chen, H\. Wu, Q\. Yan, and W\. Lin \(2024\)Boosting image quality assessment through efficient transformer adaptation with local feature enhancement\.InProc\. CVPR,Cited by:[§C\.4](https://arxiv.org/html/2607.08109#A3.SS4.p14.1),[Table 25](https://arxiv.org/html/2607.08109#A3.T25),[Table 25](https://arxiv.org/html/2607.08109#A3.T25.7.2),[Table 32](https://arxiv.org/html/2607.08109#A3.T32.6.5.4.1.1.1),[Table 2](https://arxiv.org/html/2607.08109#S3.T2.4.1.15.13.1),[§4\.2](https://arxiv.org/html/2607.08109#S4.SS2.p2.1)\.
- Y\. Yang, K\. Zha, Y\. Chen, H\. Wang, and D\. Katabi \(2021\)Delving into deep imbalanced regression\.InProc\. ICML,Cited by:[3rd item](https://arxiv.org/html/2607.08109#A2.I1.i3.p1.1),[2nd item](https://arxiv.org/html/2607.08109#A3.I2.i2.p1.1),[§4\.1](https://arxiv.org/html/2607.08109#S4.SS1.p1.1)\.
- Z\. Ying, M\. Mandal, D\. Ghadiyaram, and A\. Bovik \(2021\)Patch\-VQ: ‘patching up’ the video quality problem\.InProc\. CVPR,Cited by:[1st item](https://arxiv.org/html/2607.08109#A2.I3.i1.p1.1),[§1](https://arxiv.org/html/2607.08109#S1.p1.1),[Table 3](https://arxiv.org/html/2607.08109#S3.T3.4.1.6.4.1),[§4\.3](https://arxiv.org/html/2607.08109#S4.SS3.p1.1)\.
- Z\. Ying, H\. Niu, P\. Gupta, D\. Mahajan, D\. Ghadiyaram, and A\. Bovik \(2020\)From patches to pictures \(PaQ\-2\-PiQ\): mapping the perceptual space of picture quality\.InProc\. CVPR,Cited by:[5th item](https://arxiv.org/html/2607.08109#A2.I2.i5.p1.1),[§B\.2](https://arxiv.org/html/2607.08109#A2.SS2.p1.1),[Table 2](https://arxiv.org/html/2607.08109#S3.T2.4.1.6.4.1),[§4\.2](https://arxiv.org/html/2607.08109#S4.SS2.p1.1)\.
- K\. Zha, P\. Cao, J\. Son, Y\. Yang, and D\. Katabi \(2023\)Rank\-N\-Contrast: learning continuous representations for regression\.InProc\. NeurIPS,Cited by:[1st item](https://arxiv.org/html/2607.08109#A3.I1.i1.p1.1),[§C\.1](https://arxiv.org/html/2607.08109#A3.SS1.p1.1),[§C\.1](https://arxiv.org/html/2607.08109#A3.SS1.p3.1),[§C\.5](https://arxiv.org/html/2607.08109#A3.SS5.p6.1),[Table 10](https://arxiv.org/html/2607.08109#A3.T10.4.8.3.1),[Table 11](https://arxiv.org/html/2607.08109#A3.T11.4.8.3.1),[Table 9](https://arxiv.org/html/2607.08109#A3.T9.2.2.8.5.1),[Figure 1](https://arxiv.org/html/2607.08109#S1.F1),[Figure 1](https://arxiv.org/html/2607.08109#S1.F1.6.2),[§1](https://arxiv.org/html/2607.08109#S1.p3.1),[§2\.3](https://arxiv.org/html/2607.08109#S2.SS3.p3.1),[4th item](https://arxiv.org/html/2607.08109#S3.I1.i4.p1.1),[Table 1](https://arxiv.org/html/2607.08109#S3.T1.4.1.9.8.1),[Figure 4](https://arxiv.org/html/2607.08109#S4.F4),[Figure 4](https://arxiv.org/html/2607.08109#S4.F4.4.2),[§4\.4](https://arxiv.org/html/2607.08109#S4.SS4.p1.1),[§4\.4](https://arxiv.org/html/2607.08109#S4.SS4.p3.2),[Table 4](https://arxiv.org/html/2607.08109#S4.T4.9.7.7.7.1)\.
- S\. Zhang, L\. Yang, M\. B\. Mi, X\. Zheng, and A\. Yao \(2023\)Improving deep regression with ordinal entropy\.InProc\. ICLR,Cited by:[Table 10](https://arxiv.org/html/2607.08109#A3.T10.4.7.2.1),[Table 11](https://arxiv.org/html/2607.08109#A3.T11.4.7.2.1),[§2\.1](https://arxiv.org/html/2607.08109#S2.SS1.p2.1),[Table 1](https://arxiv.org/html/2607.08109#S3.T1.4.1.8.7.1)\.
- W\. Zhang, K\. Ma, J\. Yan, D\. Deng, and Z\. Wang \(2018\)Blind image quality assessment using a deep bilinear convolutional neural network\.IEEE Trans\. Circuits Syst\. Video Technol\.\.Cited by:[Table 2](https://arxiv.org/html/2607.08109#S3.T2.4.1.5.3.1)\.
- W\. Zhang, K\. Ma, G\. Zhai, and X\. Yang \(2021\)Uncertainty\-aware blind image quality assessment in the laboratory and wild\.IEEE Trans\. Image Proc\.\.Cited by:[Table 2](https://arxiv.org/html/2607.08109#S3.T2.4.1.8.6.1)\.
- X\. Zhang, Y\. Sugano, M\. Fritz, and A\. Bulling \(2017a\)It’s written all over your face: full\-face appearance\-based gaze estimation\.InProc\. CVPR Workshops,Cited by:[2nd item](https://arxiv.org/html/2607.08109#A3.I1.i2.p1.2)\.
- X\. Zhang, Y\. Sugano, M\. Fritz, and A\. Bulling \(2017b\)MPIIGaze: real\-world dataset and deep appearance\-based gaze estimation\.IEEE Trans\. Pattern Anal\. Mach\. Intell\.\.Cited by:[2nd item](https://arxiv.org/html/2607.08109#A3.I1.i2.p1.2)\.
- Z\. Zhang, Y\. Song, and H\. Qi \(2017c\)Age progression/regression by conditional adversarial autoencoder\.InProc\. CVPR,Cited by:[4th item](https://arxiv.org/html/2607.08109#A2.I1.i4.p1.1),[§4\.1](https://arxiv.org/html/2607.08109#S4.SS1.p1.1)\.
- K\. Zhao, K\. Yuan, M\. Sun, M\. Li, X\. Wen, K\. Zhao, K\. Yuan, M\. Sun, M\. Li, and X\. Wen \(2023\)Quality\-aware pre\-trained models for blind image quality assessment\.InProc\. CVPR,Cited by:[§B\.2](https://arxiv.org/html/2607.08109#A2.SS2.p1.1),[Table 2](https://arxiv.org/html/2607.08109#S3.T2.4.1.13.11.1),[§4\.2](https://arxiv.org/html/2607.08109#S4.SS2.p2.1)\.
- J\. Zheng, Y\. Yao, B\. Han, D\. Wang, and T\. Liu \(2024\)Enhancing contrastive learning for ordinal regression via ordinal content preserved data augmentation\.InProc\. ICLR,Cited by:[§2\.3](https://arxiv.org/html/2607.08109#S2.SS3.p3.1)\.
- H\. Zhu, H\. Shan, Y\. Zhang, L\. Che, X\. Xu, J\. Zhang, and F\. Wang \(2021\)Convolutional ordinal regression forest for image ordinal estimation\.IEEE Trans\. Neural Netw\. Learn\. Syst\.\.Cited by:[§2\.1](https://arxiv.org/html/2607.08109#S2.SS1.p1.1),[§2\.1](https://arxiv.org/html/2607.08109#S2.SS1.p2.1)\.
## Appendix AProperties and Gradient Analysis ofLConOrdL\_\{\\text\{ConOrd\}\}in \([3](https://arxiv.org/html/2607.08109#S3.E3)\)
We analyze the gradient ofLConOrdL\_\{\\text\{ConOrd\}\}with respect to the embeddingziz\_\{i\}\. Using the chain rule, we have
∂LConOrd∂zi=∑j∈A\(i\)∂LConOrd∂κij⋅∂κij∂zi\.\\frac\{\\partial L\_\{\\text\{ConOrd\}\}\}\{\\partial z\_\{i\}\}=\\sum\_\{j\\in A\(i\)\}\{\\frac\{\\partial L\_\{\\text\{ConOrd\}\}\}\{\\partial\\kappa\_\{ij\}\}\\cdot\\frac\{\\partial\\kappa\_\{ij\}\}\{\\partial z\_\{i\}\}\}\.\(11\)
For simplicity, letαi=∑j∈A\(i\)aijexp\(κij/τ\)\\alpha\_\{i\}=\\sum\_\{j\\in A\(i\)\}a\_\{ij\}\\exp\(\\kappa\_\{ij\}/\\tau\)andβi=∑j∈A\(i\)bijexp\(κij/τ\)\\beta\_\{i\}=\\sum\_\{j\\in A\(i\)\}b\_\{ij\}\\exp\(\\kappa\_\{ij\}/\\tau\)in \([3](https://arxiv.org/html/2607.08109#S3.E3)\)\. Then,
LConOrd=−12N∑i=12N1\|A\(i\)\|logαiβi\.L\_\{\\text\{ConOrd\}\}=\-\\frac\{1\}\{2N\}\\sum\_\{i=1\}^\{2N\}\\frac\{1\}\{\|A\(i\)\|\}\\log\\frac\{\\alpha\_\{i\}\}\{\\beta\_\{i\}\}\.\(12\)
Computing the first term in the chain rule expression in \([11](https://arxiv.org/html/2607.08109#A1.E11)\),
∂LConOrd∂κij\\displaystyle\\frac\{\\partial L\_\{\\text\{ConOrd\}\}\}\{\\partial\\kappa\_\{ij\}\}=\\displaystyle=−12N\|A\(i\)\|\(1αi∂αi∂κij−1βi∂βi∂κij\)\\displaystyle\-\\frac\{1\}\{2N\|A\(i\)\|\}\\left\(\\frac\{1\}\{\\alpha\_\{i\}\}\\frac\{\\partial\\alpha\_\{i\}\}\{\\partial\\kappa\_\{ij\}\}\-\\frac\{1\}\{\\beta\_\{i\}\}\\frac\{\\partial\\beta\_\{i\}\}\{\\partial\\kappa\_\{ij\}\}\\right\)\(13\)=\\displaystyle=−12N\|A\(i\)\|\(1αi⋅aijτexp\(κij/τ\)−1βi⋅bijτexp\(κij/τ\)\)\\displaystyle\-\\frac\{1\}\{2N\|A\(i\)\|\}\\left\(\\frac\{1\}\{\\alpha\_\{i\}\}\\cdot\\frac\{a\_\{ij\}\}\{\\tau\}\\exp\(\\kappa\_\{ij\}/\\tau\)\-\\frac\{1\}\{\\beta\_\{i\}\}\\cdot\\frac\{b\_\{ij\}\}\{\\tau\}\\exp\(\\kappa\_\{ij\}/\\tau\)\\right\)\(14\)=\\displaystyle=−12Nτ\|A\(i\)\|exp\(κij/τ\)\(aijαi−bijβi\)\.\\displaystyle\-\\frac\{1\}\{2N\\tau\|A\(i\)\|\}\\exp\(\\kappa\_\{ij\}/\\tau\)\\left\(\\frac\{a\_\{ij\}\}\{\\alpha\_\{i\}\}\-\\frac\{b\_\{ij\}\}\{\\beta\_\{i\}\}\\right\)\.\(15\)
Assuming that the similarityκij\\kappa\_\{ij\}is defined as the negative squared Euclidean distance,i\.e\.,κij=−‖zi−zj‖22\\kappa\_\{ij\}=\-\\\|z\_\{i\}\-z\_\{j\}\\\|\_\{2\}^\{2\},
∂κij∂zi=−2\(zi−zj\)\.\\frac\{\\partial\\kappa\_\{ij\}\}\{\\partial z\_\{i\}\}=\-2\(z\_\{i\}\-z\_\{j\}\)\.\(16\)
Thus, we have the gradient
∂LConOrd∂zi\\displaystyle\\frac\{\\partial L\_\{\\text\{ConOrd\}\}\}\{\\partial z\_\{i\}\}=\\displaystyle=∑j∈A\(i\)−12Nτ\|A\(i\)\|exp\(κij/τ\)\(aijαi−bijβi\)⋅−2\(zi−zj\)\\displaystyle\\sum\_\{j\\in A\(i\)\}\{\-\\frac\{1\}\{2N\\tau\|A\(i\)\|\}\\exp\(\\kappa\_\{ij\}/\\tau\)\\left\(\\frac\{a\_\{ij\}\}\{\\alpha\_\{i\}\}\-\\frac\{b\_\{ij\}\}\{\\beta\_\{i\}\}\\right\)\\cdot\-2\(z\_\{i\}\-z\_\{j\}\)\}\(17\)=\\displaystyle=1Nτ\|A\(i\)\|∑j∈A\(i\)exp\(κij/τ\)\(aijαi−bijβi\)⋅\(zi−zj\)\.\\displaystyle\\frac\{1\}\{N\\tau\|A\(i\)\|\}\\sum\_\{j\\in A\(i\)\}\{\\exp\(\\kappa\_\{ij\}/\\tau\)\\left\(\\frac\{a\_\{ij\}\}\{\\alpha\_\{i\}\}\-\\frac\{b\_\{ij\}\}\{\\beta\_\{i\}\}\\right\)\\cdot\(z\_\{i\}\-z\_\{j\}\)\}\.\(18\)
The following observations can be made from this gradient expression\.
- •Attraction and repulsion induced by affinity and disparity weights:The scalar factor\(aijαi−bijβi\)\\big\(\\frac\{a\_\{ij\}\}\{\\alpha\_\{i\}\}\-\\frac\{b\_\{ij\}\}\{\\beta\_\{i\}\}\\big\)in \([18](https://arxiv.org/html/2607.08109#A1.E18)\) determines whether gradient descent pullsziz\_\{i\}toward or pushes it away fromzjz\_\{j\}\. Since the affinity weightaija\_\{ij\}is large for small rank differences and the disparity weightbijb\_\{ij\}is large for large rank differences, pairs with similar ranks tend to yield positive factors \(attraction\), whereas pairs with distant ranks tend to yield negative factors \(repulsion\)\.
- •Locality induced by the exponential kernel:The factorexp\(κij/τ\)\\exp\(\\kappa\_\{ij\}/\\tau\)in \([18](https://arxiv.org/html/2607.08109#A1.E18)\) modulates each pairwise contribution according to the current embedding distance, sinceκij=−‖zi−zj‖22\\kappa\_\{ij\}=\-\\\|z\_\{i\}\-z\_\{j\}\\\|\_\{2\}^\{2\}\. Pairs that are already close in the embedding space receive larger weights, while distant pairs are exponentially downweighted\. Consequently, the gradient places greater emphasis on sample pairs that are both close in rank and close in the embedding space, enabling ConOrd to capture fine\-grained ordinal distinctions more effectively\.
- •Selective emphasis on informative pairwise relations:Because strong forces arise only when two samples are close in the embedding space, the optimization primarily updatesziz\_\{i\}using pairs that the model already considers relevant\. Combined with the affinity and disparity weights, this suppresses uninformative interactions with very distant ranks and allows ConOrd to adjust embeddings where ordinal information is most meaningful, without introducing instability as training progresses\.
- •Choice of affinity and disparity weights:The affinity and disparity weights depend only on the rank gapdij=\|ri−rj\|d\_\{ij\}=\|r\_\{i\}\-r\_\{j\}\|\. We adopt the quadratic formsaij=1/\(dij2\+ϵ\)a\_\{ij\}=1/\(d\_\{ij\}^\{2\}\+\\epsilon\)andbij=dij2b\_\{ij\}=d\_\{ij\}^\{2\}because they are the simplest smooth, symmetric, and strictly monotonic functions of the ordinal distance\. Quadratic growth provides a natural balance between near and far ranks — small gaps yield strong attractive weights, whereas large gaps contribute more to the repulsive term\. While alternative monotonic choices \(e\.g\.,linear or higher\-order functions\) are possible, we found that ConOrd is not highly sensitive to the exact form of these weights\. Across the variants evaluated in Table[6](https://arxiv.org/html/2607.08109#S4.T6), the quadratic form offers a good trade\-off between stability and performance and performs consistently well across datasets\. This observation can be further understood from the gradient behavior ofLConOrdL\_\{\\text\{ConOrd\}\}\. From \([18](https://arxiv.org/html/2607.08109#A1.E18)\), pair\(i,j\)\(i,j\)contributes attraction ifaijαi\>bijβi\\frac\{a\_\{ij\}\}\{\\alpha\_\{i\}\}\>\\frac\{b\_\{ij\}\}\{\\beta\_\{i\}\},i\.e\.,a\(dij\)b\(dij\)\>αiβi\\frac\{a\(d\_\{ij\}\)\}\{b\(d\_\{ij\}\)\}\>\\frac\{\\alpha\_\{i\}\}\{\\beta\_\{i\}\}, and repulsion otherwise\. Sinceαiβi\\frac\{\\alpha\_\{i\}\}\{\\beta\_\{i\}\}is a shared threshold for anchorii, a key condition for the desired ordinal behavior is thata\(d\)b\(d\)\\frac\{a\(d\)\}\{b\(d\)\}decreases monotonically withdd\. This induces a single crossover rank gap, below which pairs are encouraged to attract and above which they are encouraged to repel, yielding a consistent ordinal interaction pattern for each anchor\. Table 7:Interpretation of different affinity and disparity weight configurations\.From this perspective, the configurations in Table[6](https://arxiv.org/html/2607.08109#S4.T6)can be interpreted according to whether they satisfy this monotone transition property\. As summarized in Table[7](https://arxiv.org/html/2607.08109#A1.T7), weightings that satisfy it \(Methods I–VIII\) all perform comparably well, whereas configurations that break it \(Method IX and Method X\) show degraded performance\. Thus, the residual variation within Methods I–VIII is better interpreted as a secondary effect of how each valid function emphasizes different rank gaps \(and the choice ofκij\\kappa\_\{ij\}\), rather than evidence that the quadratic form is uniquely special\.
## Appendix BExperimental Details
### B\.1Facial Age Estimation
Datasets:Here, we provide more descriptions of each facial age estimation dataset\.
- •MORPH II\(Ricanek and Tesafaye,[2006](https://arxiv.org/html/2607.08109#bib.bib35)\): As inChanget al\.\([2011](https://arxiv.org/html/2607.08109#bib.bib41)\), we use 5,492 Caucasian images divided into training and test sets with a ratio of 8:2\.
- •CLAP2015\(Escaleraet al\.,[2015](https://arxiv.org/html/2607.08109#bib.bib36)\): This dataset provides 4,691 facial images in total that are split into 2,476 for training, 1,136 for validation, and 1,079 for testing\.
- •AgeDB\-DIR\(Moschoglouet al\.,[2017](https://arxiv.org/html/2607.08109#bib.bib37); Yanget al\.,[2021](https://arxiv.org/html/2607.08109#bib.bib38)\): It contains 12\.2K images for training, and the validation and test sets are balanced with 2\.1K images\. The age value ranges from 0 to 101\.
- •UTK\(Zhanget al\.,[2017c](https://arxiv.org/html/2607.08109#bib.bib39)\): It consists of 20,000 facial images in a wide age range of \[0,116\]\. We adopt the evaluation protocol in\(Gustafssonet al\.,[2020](https://arxiv.org/html/2607.08109#bib.bib28); Berget al\.,[2021](https://arxiv.org/html/2607.08109#bib.bib29)\)\.
- •CACD\(Chenet al\.,[2015](https://arxiv.org/html/2607.08109#bib.bib115)\): It provides 160k images of 2000 celebrities, which have an age range of \[14, 62\]\. We use the training set specified in\(Shinet al\.,[2022](https://arxiv.org/html/2607.08109#bib.bib3)\)\.
- •Adience\(Levi and Hassner,[2015](https://arxiv.org/html/2607.08109#bib.bib40)\): It has 26,580 facial images that are grouped into 8 ordinal classes: 0\-2, 4\-6, 8\-13, 15\-20, 25\-32, 38\-43, 48\-53, and over 60\-year\-olds\.
Implementation details:For age estimation, ViT\-B in the CLIP algorithm\(Radfordet al\.,[2021](https://arxiv.org/html/2607.08109#bib.bib44)\)is employed as the encoderhh\. The model is trained using the Adam optimizer\(Kingma and Ba,[2015](https://arxiv.org/html/2607.08109#bib.bib70)\)with a weight decay of 0\.0005\. We employ a cosine annealing scheduler\(Huanget al\.,[2017](https://arxiv.org/html/2607.08109#bib.bib72)\)to adjust the learning rate\. For data augmentation, only random horizontal flipping is applied\.
### B\.2Blind Image Quality Assessment
Datasets:We evaluate the performance of the proposed ConOrd algorithm on the BIQA task using five datasets\. For all datasets except FLIVE, we randomly split each dataset into train and test sets with a ratio of 4:1\. Then, we repeat the training and evaluation over 10 different splits and report the median evaluation scores as done in previous methods\(Zhaoet al\.,[2023](https://arxiv.org/html/2607.08109#bib.bib13); Shinet al\.,[2024](https://arxiv.org/html/2607.08109#bib.bib14)\)\. For FLIVE, we employ the same evaluation protocol as in\(Yinget al\.,[2020](https://arxiv.org/html/2607.08109#bib.bib9)\), where 30K images are used for training and 1\.8K for testing\.
- •BID\(Ciancioet al\.,[2010](https://arxiv.org/html/2607.08109#bib.bib117)\): It contains 586 images degraded by various types of realistic distortion \(e\.g\., motion blur, out\-of\-focus\), with mean opinion scores \(MOS\) in the range\[0,5\]\[0,5\]\.
- •CLIVE\(Ghadiyaram and Bovik,[2015](https://arxiv.org/html/2607.08109#bib.bib118)\): It consists of 1,169 natural images collected in diverse environments, annotated with MOS in the range \[1, 100\]\.
- •KonIQ10k\(Hosuet al\.,[2020](https://arxiv.org/html/2607.08109#bib.bib119)\): This dataset provides 10,073 images sampled from YFCC100M\(Thomeeet al\.,[2016](https://arxiv.org/html/2607.08109#bib.bib114)\), with MOS ranging from 1 to 100\.
- •SPAQ\(Fanget al\.,[2020](https://arxiv.org/html/2607.08109#bib.bib43)\): Smartphone Photography Attribute and Quality \(SPAQ\) database includes 11,125 images taken with 66 different smartphones\. Each image is assigned image attribute scores, but we use only the overall image quality scores in the range \[0, 100\]\.
- •FLIVE\(Yinget al\.,[2020](https://arxiv.org/html/2607.08109#bib.bib9)\): It is a large\-scale BIQA dataset comprising approximately 40,000 images and 120,000 patches in the range \[0, 100\]\. FollowingYinget al\.\([2020](https://arxiv.org/html/2607.08109#bib.bib9)\), we only use the full\-resolution images for training and testing, not the patches\.
Implementation details:For BIQA, we also employ ViT\-B from the CLIP algorithm\(Radfordet al\.,[2021](https://arxiv.org/html/2607.08109#bib.bib44)\)as the encoderhh\. The AdamW optimizer\(Loshchilov and Hutter,[2017](https://arxiv.org/html/2607.08109#bib.bib120)\)is used with a weight decay of2×10−32\\times 10^\{\-3\}\. We use a cosine annealing scheduler\(Loshchilov and Hutter,[2016](https://arxiv.org/html/2607.08109#bib.bib121)\)with a 5\-epoch warm\-up phase, during which the learning rate increases gradually to five times the initial value\. For data augmentation, we use top\-left, bottom\-right, and center crops during training and use the average feature of the three cropped images\.
### B\.3Blind Video Quality Assessment
Datasets:The following five BVQA datasets are used to train and evaluate the proposed algorithm\.
- •LSVQ\(Yinget al\.,[2021](https://arxiv.org/html/2607.08109#bib.bib21)\): It is one of the largest datasets consisting of 39K videos, split into 28K for training and 11K for testing\. The resolutions of videos are from 99p to 4K\.
- •KoNViD\-1k\(Hosuet al\.,[2017](https://arxiv.org/html/2607.08109#bib.bib32)\): It contains 1200 videos selected from YFCC\-100M\(Thomeeet al\.,[2016](https://arxiv.org/html/2607.08109#bib.bib114)\)to cover various contents and distortions\. All videos have a resolution of 540p\.
- •LIVE\-VQC\(Sinno and Bovik,[2018](https://arxiv.org/html/2607.08109#bib.bib127)\): It consists of 585 videos with various resolutions from 240p to 1080p\.
- •CVD2014\(Nuutinenet al\.,[2016](https://arxiv.org/html/2607.08109#bib.bib113)\): It is composed of 234 videos in five distinct scene types, filmed using 78 different cameras\.
- •YouTube\-UGC\(Wanget al\.,[2019](https://arxiv.org/html/2607.08109#bib.bib33)\): It provides about 1K video samples from user\-generated contents on YouTube\. The video resolutions range from 360p to 4K\.
Implementation details:Recent state\-of\-the\-art approaches in the BVQA task employ multiple backbone networks to capture diverse aspects of a video signal\. Following this trend, we adopt a dual\-backbone architecture in Figure[7](https://arxiv.org/html/2607.08109#A2.F7)\. Specifically, we utilize ViT\-B for the spatial feature extractor, which encodesNNsampled framesIi1,Ii2,…,IiNI\_\{i\}^\{1\},I\_\{i\}^\{2\},\.\.\.,I\_\{i\}^\{N\}into spatial feature vectorsziI1,ziI2,…,ziINz\_\{i\}^\{I\_\{1\}\},z\_\{i\}^\{I\_\{2\}\},\.\.\.,z\_\{i\}^\{I\_\{N\}\}\. These are then averaged to obtain a compact spatial representationzisz\_\{i\}^\{s\}\. For the temporal feature extractor, we adopt the Fast pathway network of the SlowFast video recognizer\(Feichtenhoferet al\.,[2019](https://arxiv.org/html/2607.08109#bib.bib80)\)to extract temporal feature mapsziP1,ziP2,…,ziPMz\_\{i\}^\{P\_\{1\}\},z\_\{i\}^\{P\_\{2\}\},\.\.\.,z\_\{i\}^\{P\_\{M\}\}fromMMsampled clipsPi1,Pi2,…,PiMP\_\{i\}^\{1\},P\_\{i\}^\{2\},\.\.\.,P\_\{i\}^\{M\}\. To enhance the temporal representations, we further refine the extracted temporal feature maps using a transformer module\. This module performs inter\-frame and intra\-frame attention for each temporal feature map, yielding refined temporal featuresz~iP1,z~iP2,…,z~iPM\\tilde\{z\}\_\{i\}^\{P\_\{1\}\},\\tilde\{z\}\_\{i\}^\{P\_\{2\}\},\.\.\.,\\tilde\{z\}\_\{i\}^\{P\_\{M\}\}\. The refined features are then averaged to obtain the final temporal representationzitz\_\{i\}^\{t\}\. Finally, the spatial and temporal representations are fused to generate the final feature vectorziz\_\{i\}, which is used to compute the proposed ConOrd loss\.
Figure 7:Network architecture for BVQA\.
### B\.4Training and inference configurations
Table[8](https://arxiv.org/html/2607.08109#A2.T8)summarizes the training and inference configurations for the proposed ConOrd algorithm\.
Table 8:Training and inference configurations\.
## Appendix CMore Experimental Results
### C\.1More Comparison on Additional Benchmarks
Datasets:We evaluate the performance of ConOrd on two additional regression datasets previously used in the evaluation of RnC\(Zhaet al\.,[2023](https://arxiv.org/html/2607.08109#bib.bib16)\)\.
- •SkyFinder\(Mihailet al\.,[2016](https://arxiv.org/html/2607.08109#bib.bib71); Chuet al\.,[2018](https://arxiv.org/html/2607.08109#bib.bib81)\): It is a dataset for predicting ambient temperatures from outdoor webcam images\. It consists of 35,417 images taken by 44 different cameras under diverse weather and lighting conditions\. The corresponding temperature values range from−20°Cto49°C\-20\\text\{\\,\}\\mathrm\{\\SIUnitSymbolCelsius\}49\\text\{\\,\}\\mathrm\{\\SIUnitSymbolCelsius\}\. FollowingZhaet al\.\([2023](https://arxiv.org/html/2607.08109#bib.bib16)\), we split the dataset into 28,373 training and 3,522 test images\.
- •MPIIFaceGaze\(Zhanget al\.,[2017b](https://arxiv.org/html/2607.08109#bib.bib126),[a](https://arxiv.org/html/2607.08109#bib.bib82)\): It is a dataset for estimating gaze directions from face images, containing 213,659 face images collected from 15 participants during natural laptop use\. We divide the dataset to construct a training set of 33,000 images and a test set of 6,000 images, ensuring no participant overlap across splits\. Each image is annotated with a 2D gaze vector of pitch and yaw angles, where pitch angles range from−40°to10°\-40\\text\{\\,\}\\mathrm\{\\SIUnitSymbolDegree\}10\\text\{\\,\}\\mathrm\{\\SIUnitSymbolDegree\}, and yaw from−45°to45°\-45\\text\{\\,\}\\mathrm\{\\SIUnitSymbolDegree\}45\\text\{\\,\}\\mathrm\{\\SIUnitSymbolDegree\}\.
For a fair comparison, we adopt the ResNet\-18 backbone\(Heet al\.,[2016](https://arxiv.org/html/2607.08109#bib.bib74)\)as done in RnC\(Zhaet al\.,[2023](https://arxiv.org/html/2607.08109#bib.bib16)\)\. Table[9](https://arxiv.org/html/2607.08109#A3.T9)shows that ConOrd achieves the best performance, outperforming all prior methods on both datasets\.
Table 9:Performance comparison on the SkyFinder and MPIIFaceGaze datasets\.Regression examples: We provide examples of regression results on the SkyFinder and MPIIFaceGaze datasets in Figure[8](https://arxiv.org/html/2607.08109#A3.F8)and Figure[9](https://arxiv.org/html/2607.08109#A3.F9), respectively\.
Figure 8:Examples of regression results on the SkyFinder dataset\. The estimated and ground\-truth values are specified under each image: estimated \[true\]\.Figure 9:Examples of regression results on the MPIIFaceGaze dataset\. The estimated and ground\-truth values are specified under each image: estimated \[true\]\.
### C\.2More Comparison with DIR Methods
To further examine the effectiveness of ConOrd, we compare it with representative deep imbalanced regression \(DIR\) methods on standard DIR benchmarks under controlled settings\. This evaluation uses the same backbone and evaluation protocol for all competing methods within each benchmark, thereby isolating the effect of the learning objective\.
Datasets:Following DIR methods, we evaluate ConOrd on IMDB\-WIKI\-DIR, STS\-B\-DIR, and NYUD2\-DIR, in addition to AgeDB\-DIR\. These benchmarks cover age estimation, text similarity prediction, and depth estimation, while containing imbalanced training distributions\.
- •IMDB\-WIKI\-DIR:It is an age estimation benchmark derived from IMDB\-WIKI\(Rotheet al\.,[2018](https://arxiv.org/html/2607.08109#bib.bib128)\), consisting of face images with age labels\. It contains 191,509 training images, 11,022 validation images, and 11,022 test images\.
- •STS\-B\-DIR:It is a natural language regression benchmark derived from the Semantic Textual Similarity Benchmark \(STS\-B\)\(Ceret al\.,[2017](https://arxiv.org/html/2607.08109#bib.bib93)\), where the task is to predict a continuous similarity score between sentence pairs\. FollowingYanget al\.\([2021](https://arxiv.org/html/2607.08109#bib.bib38)\), it contains 5,249 training pairs, 1,000 validation pairs, and 1,000 test pairs\.
- •NYUD2\-DIR:It is a depth estimation benchmark constructed from the NYU Depth Dataset V2\(Silbermanet al\.,[2012](https://arxiv.org/html/2607.08109#bib.bib94)\), which provides RGB images and depth maps for indoor scenes\. Following standard practice\(Huet al\.,[2019](https://arxiv.org/html/2607.08109#bib.bib95)\), 50K images are used for training and 654 images are used for testing\.
Experimental protocol and results:For AgeDB\-DIR and IMDB\-WIKI\-DIR, we use ResNet\-50 as the backbone\. For STS\-B\-DIR, we use a BiLSTM with GloVe embeddings followingWanget al\.\([2018](https://arxiv.org/html/2607.08109#bib.bib96)\), and for NYUD2\-DIR, we use a ResNet\-50\-based encoder–decoder\(Huet al\.,[2019](https://arxiv.org/html/2607.08109#bib.bib95)\)\. As shown in Table[10](https://arxiv.org/html/2607.08109#A3.T10), ConOrd consistently outperforms competing DIR methods under identical conditions, confirming that the observed gains stem from the proposed objective\.
Table 10:Comparison with ordinal and DIR methods on standard DIR benchmarks under matched settings\.Comparison on BIQA and BVQA benchmarks:We additionally compare ConOrd with DIR methods on BIQA and BVQA benchmarks\. To ensure a fair comparison, all methods are implemented under the same backbone, training protocol, and evaluation pipeline as ConOrd\. As shown in Table[11](https://arxiv.org/html/2607.08109#A3.T11), ConOrd outperforms representative DIR methods on both BID and LSVQ\-1080p\. These results further confirm that the performance gains of ConOrd are attributable to the proposed objective rather than architectural or evaluation differences\.
Table 11:Comparison with DIR methods on BID and LSVQ\-1080p\.
### C\.3Hyperparameter Analysis
Performance according to temperatureτ\\tauin \([3](https://arxiv.org/html/2607.08109#S3.E3)\):Table[12](https://arxiv.org/html/2607.08109#A3.T12)reports the performance of the proposed algorithm according to the temperature parameterτ\\tauin \([3](https://arxiv.org/html/2607.08109#S3.E3)\), which controls the smoothness of the representation distribution\. We observe that the performance is relatively stable within a range0\.05≤τ≤0\.100\.05\\leq\\tau\\leq 0\.10, achieving the best results whenτ=0\.07\\tau=0\.07, with the minimal MAE on CLAP2015 and consistently high correlation scores on BID and LSVQ\. With larger values \(e\.g\.,τ≥1\.0\\tau\\geq 1\.0\), the performance degrades gradually across all datasets, indicating that excessively large temperature values reduce the effectiveness of the proposed contrastive learning objective\.
Table 12:Performance of the proposed algorithm according toτ\\tau\.We further visualize how the performance varies with the temperature parameterτ\\tau\. As shown in Figure[10](https://arxiv.org/html/2607.08109#A3.F10), both SRCC and PCC remain stable within a practical range \(0\.05≤τ≤0\.100\.05\\leq\\tau\\leq 0\.10\) and begin to deteriorate only whenτ\\taubecomes excessively large\. The corresponding training curves also indicate consistent convergence behavior across all settings\.
Figure 10:Sensitivity of ConOrd to the temperature parameterτ\\tauon the BID dataset\.Performance according toϵ\\epsilonin \([4](https://arxiv.org/html/2607.08109#S3.E4)\):Table[13](https://arxiv.org/html/2607.08109#A3.T13)presents the results for varying values ofϵ\\epsilonin \([4](https://arxiv.org/html/2607.08109#S3.E4)\), which is used to prevent division by zero in the affinity weight computation\. The model yields stable performance across a wide range ofϵ\\epsilonvalues, indicating that it is robust to the choice ofϵ\\epsilon\.
Table 13:Performance of the proposed algorithm according toϵ\\epsilon\.To complement the quantitative results in Table[13](https://arxiv.org/html/2607.08109#A3.T13), we additionally visualize the effect ofϵ\\epsilonin Figure[11](https://arxiv.org/html/2607.08109#A3.F11), showing its influence on BID performance and training behavior\. SRCC and PCC remain nearly unchanged across a wide range ofϵ\\epsilon, indicating strong robustness to this parameter\. Training loss curves also show consistent convergence for all tested values\.
Figure 11:Sensitivity of ConOrd toϵ\\epsilonon the BID dataset\.Performance according tokkin \([10](https://arxiv.org/html/2607.08109#S3.E10)\):Table[14](https://arxiv.org/html/2607.08109#A3.T14)reports the results for varying values ofkkused duringkk\-NN inference\. The performance remains stable across a broad range ofkk, with only marginal fluctuations across all datasets\. The detailed configuration of thekkvalues is provided in Table[8](https://arxiv.org/html/2607.08109#A2.T8)\.
Table 14:Performance across different values ofkkused forkk\-NN inference\.
### C\.4Additional analysis
Performance according to loss balancing factors in \([9](https://arxiv.org/html/2607.08109#S3.E9)\):Table[15](https://arxiv.org/html/2607.08109#A3.T15)reports the impact of varying the weights ofLcenterL\_\{\\text\{center\}\}relative toLConOrdL\_\{\\text\{ConOrd\}\}across three benchmark datasets\. The results indicate that the model is relatively robust to changes in the loss balancing factor, with only minor variations in MAE, SRCC, and PCC\. Notably, setting both weights to 1\.0 yields the best MAE on CLAP2015, suggesting that equal emphasis on the ordinal contrastive term and the intra\-class compactness term provides the most effective trade\-off for stable and accurate learning\.
Table 15:Performance according to loss balancing factors\.Additional configurations for loss in \([3](https://arxiv.org/html/2607.08109#S3.E3)\):Table[16](https://arxiv.org/html/2607.08109#A3.T16)extends the analysis presented in Table[6](https://arxiv.org/html/2607.08109#S4.T6)by including additional configurations ofκij\\kappa\_\{ij\},aija\_\{ij\}, andbijb\_\{ij\}, as well as results on datasets beyond CLAP2015\. These additional configurations explore alternative formulations, such as square\-root and logarithmic scaling \(methods XI and XII\) and truncated weights \(method XIII\)\. The table provides a comprehensive view of how different design choices influence results\. Overall, it reaffirms the effectiveness of the proposed configuration \(method VIII\) in accurately capturing ordinal relationships\.
Table 16:Performance according to different configurations ofκij,aij,bij\\kappa\_\{ij\},a\_\{ij\},b\_\{ij\}in \([3](https://arxiv.org/html/2607.08109#S3.E3)\)\. Note that method IX setsΔ\\Deltato 0 ifri=rjr\_\{i\}=r\_\{j\}, and to a positive threshold of 5 otherwise\.Effect ofLcenterL\_\{\\text\{center\}\}:We evaluate the impact of the center loss by applyingLcenterL\_\{\\text\{center\}\}toLSupConL\_\{\\text\{SupCon\}\},LRnCL\_\{\\text\{RnC\}\}, andLConOrdL\_\{\\text\{ConOrd\}\}\. As shown in Table[17](https://arxiv.org/html/2607.08109#A3.T17), ConOrd performs strongly even without the center term, confirming that its gains mainly arise from the loss design itself\. AddingLcenterL\_\{\\text\{center\}\}yields small improvements and does not alter the relative ranking among methods\. Overall, the center loss acts as a mild stabilizer rather than a key performance factor\.
Table 17:Ablation of the effect of the center lossLcenterL\_\{\\text\{center\}\}\.Initialization of reference pointsμm\\mu\_\{m\}:We assess several initialization strategies forμm\\mu\_\{m\}\. On the BID dataset, random, zero, truncated normal, and Kaiming normal initializations yield nearly identical results, indicating that the method is largely insensitive to initialization\.
Table 18:Performance across different initialization schemes forμm\\mu\_\{m\}on BID\.We further test initializingμm\\mu\_\{m\}with the per\-rank mean feature\. Although this variant offers a small performance gain, it incurs a substantial overhead due to the extra dataset pass\. Thus, random initialization is a more efficient choice\.
Table 19:Random initialization versus mean\-feature initialization\.Resilience to reduced training data:To assess robustness under limited ordering information, we progressively subsample the AgeDB\-DIR training set and compare the resulting MAE performance — evaluated on the full test set — of ConOrd with SupCon and RnC\. As shown in Table[20](https://arxiv.org/html/2607.08109#A3.T20), ConOrd consistently outperforms both baselines across all sampling ratios\. The advantage is most pronounced in low\-data settings \(e\.g\.,ratios of 0\.1 and 0\.3\), suggesting that ConOrd learns more sample\-efficient and stable ordinal representations when supervision is scarce\.
Table 20:MAE results on AgeDB under different training\-set sampling ratios, where each ratio denotes the proportion of training data used\.Robustness to data corruption:We adopt the corruption process defined in the ImageNet\-C protocol\(Hendrycks and Dietterich,[2019](https://arxiv.org/html/2607.08109#bib.bib87)\)and apply it to the AgeDB\-DIR test set to evaluate robustness under data degradation\. All methods are trained on the clean AgeDB\-DIR training data, and MAE is measured on corrupted versions of the test images across 19 corruption types and severity levels 0–5\. As shown in Table[21](https://arxiv.org/html/2607.08109#A3.T21), ConOrd achieves the best performance under clean conditions \(severity 0\) and exhibits the slowest degradation as severity increases\. Even at the highest corruption level \(severity 5\), ConOrd maintains a lower MAE than SupCon and RnC, indicating stronger robustness to corrupted inputs\.
Table 21:MAE results on AgeDB\-DIR under test\-time data corruptions\.While Tables[20](https://arxiv.org/html/2607.08109#A3.T20)and[21](https://arxiv.org/html/2607.08109#A3.T21)summarize the numerical results, the corresponding visualizations in Figure[12](https://arxiv.org/html/2607.08109#A3.F12)help illustrate the relative performance trends\. In both reduced\-data and corruption scenarios, ConOrd shows a consistently favorable margin over the baselines\.
\(a\) Resilience to reduced training data\.
\(b\) Robustness to data corruption\.
Figure 12:Comparison of SupCon, RnC, and ConOrd under reduced supervision and test\-time corruptions\.Standard deviation of performance:To assess the reliability of ConOrd, we report the mean and standard deviation across multiple random seeds\. We use five seeds for the age estimation \(CLAP2015\) and BVQA \(LSVQ\-test\) benchmarks, and ten seeds for the BIQA \(BID\) task\. Table[22](https://arxiv.org/html/2607.08109#A3.T22)summarizes the resulting variability\. ConOrd exhibits stable performance across datasets\.
Table 22:Mean and standard deviation of ConOrd across multiple random seeds\.t\-SNE visualization of learned embeddings:Figure[13](https://arxiv.org/html/2607.08109#A3.F13)provides a qualitative t\-SNE comparison of embeddings learned byLSupConL\_\{\\text\{SupCon\}\},LRnCL\_\{\\text\{RnC\}\}, andLConOrd\+LcenterL\_\{\\text\{ConOrd\}\}\+L\_\{\\text\{center\}\}on the BID dataset\. While t\-SNE does not preserve global geometry and should be interpreted with caution, some overall trends can be observed\. SupCon yields largely mixed points with no apparent ordering, and RnC shows a coarse progression but with some overlap between neighboring quality levels\. ConOrd produces a more coherent progression of points along a smooth trajectory, suggesting that its embedding space reflects ordinal structure more clearly under this visualization\.
Figure 13:t\-SNE visualization of embeddings learned by SupCon, RnC, and ConOrd on the BID dataset\. Colors denote MOS scores\.Training stability and gradient dynamics:Figure[14](https://arxiv.org/html/2607.08109#A3.F14)compares the optimization behavior of the first eight weighting configurations listed in Table[6](https://arxiv.org/html/2607.08109#S4.T6)\. All configurations show smooth, monotonic decreases in training loss without signs of instability or divergence, indicating that the ConOrd formulation remains robust across a wide range of affinity\-disparity designs\. The gradient norms differ moderately in scale but remain consistently bounded and settle quickly into steady ranges\. These results confirm that all eight variants exhibit well\-behaved gradients and stable training dynamics, demonstrating the resilience of the proposed contrastive order formulation\.
Figure 14:Training loss and gradient\-norm dynamics across different weighting configurations, showing stable convergence and controlled gradients in all cases\.Label frequency\-aware weighting:Incorporating label frequency can further improve performance in highly imbalanced settings\. Lettingfrf\_\{r\}denote the frequency of rankrr, using frequency\-aware reweighting reduces AgeDB\-DIR MAE from 5\.15 to 5\.06, as shown in Table[23](https://arxiv.org/html/2607.08109#A3.T23)\.
Table 23:Effect of label frequency\-aware weighting on AgeDB\-DIR\.Beyondkk\-NN inference:Since ConOrd learns a metric\-structured ordinal embedding space,kk\-NN serves as a natural nonparametric readout rather than a disconnected inference rule\. However, ConOrd is not restricted tokk\-NN inference and also performs well with classification or regression heads, as shown in Table[24](https://arxiv.org/html/2607.08109#A3.T24)\.
Table 24:Compatibility of ConOrd with classification and regression heads\.Effectiveness as an auxiliary loss:We further examine whether ConOrd can be used as a plug\-and\-play auxiliary loss for an existing ordinal regression model\. Specifically, we addLConOrdL\_\{\\text\{ConOrd\}\}to LoDa\(Xuet al\.,[2024](https://arxiv.org/html/2607.08109#bib.bib79)\)without architectural modifications\. As shown in Table[25](https://arxiv.org/html/2607.08109#A3.T25), adding ConOrd improves both SRCC and PCC on the CLIVE dataset, demonstrating that the proposed loss can complement existing task\-specific objectives\.
Table 25:Effectiveness of ConOrd as an auxiliary loss on LoDa\(Xuet al\.,[2024](https://arxiv.org/html/2607.08109#bib.bib79)\)for the CLIVE dataset\.Subgroup analysis:We conduct subgroup analysis on the AgeDB\-DIR test set to examine potential demographic bias\. As shown in Table[26](https://arxiv.org/html/2607.08109#A3.T26), ConOrd shows comparable performance across gender groups, with slightly higher MAE for female samples\. Across age groups, the MAE is higher for the youngest and oldest groups, particularly for the 80\+ group, likely due to fewer samples and larger appearance variation\.
Table 26:Subgroup analysis on the AgeDB\-DIR test set\.AnalysisGroup\# samplesMAE \(↓\\downarrow\)GenderFemale8675\.51GenderMale12734\.90Age0–191585\.70Age20–396004\.50Age40–596005\.09Age60–795955\.19Age80\+1876\.77
### C\.5Complexity
We use PyTorch and NVIDIA GeForce RTX 4090 GPUs for all experiments\.
Training time:Table[27](https://arxiv.org/html/2607.08109#A3.T27)compares the average training times required for training one epoch on the SPAQ dataset\. The proposed algorithm achieves the fastest training time per epoch\. This efficiency is attributed to its design, which eliminates the need for data augmentation and pairwise sample construction\. UnlikeLSupConL\_\{\\text\{SupCon\}\}andLRnCL\_\{\\text\{RnC\}\}, which should generate augmented sample pairs during training, the proposed ConOrd eliminates this step and improves efficiency\. The RnC loss incurs the longest training time because it needs to dynamically select negative samples based on label distances for each anchor\-positive pair\. This conditional filtering introduces computational overhead and hinders parallelization\. In contrast, ConOrd uses fixed weight masks, allowing more efficient and parallel computations\. Thus, the proposed ConOrd loss requires the shortest computation time\.
Table 27:Comparison of processing times required for training one epoch on SPAQ\.Testing time on SPAQ:We also report the average testing time on the SPAQ dataset\. The whole process takes only5\.0×10−3\{5\.0\\times 10^\{\-3\}\}seconds to test an image on average:10\.0\{10\.0\}seconds for the full test feature extraction, and1\.5×10−4\{1\.5\\times 10^\{\-4\}\}seconds for the score estimation\. Hence, ConOrd provides a computationally efficient solution for practical deployment\.
Testing time on CLAP2015, BID, and LSVQ\-test:To further evaluate the reliability of thekk\-NN inference, we measure the end\-to\-end test\-time latency for processing each full test dataset\. We repeat this measurement over multiple runs and report the mean and standard deviation in Table[28](https://arxiv.org/html/2607.08109#A3.T28)\. Compared with the state\-of\-the\-art baselines for each task — NumCLIP for age estimation, LoDa for BIQA, and DOVER for BVQA — ConOrd achieves consistently faster and stable test\-time performance across all datasets\. While thekk\-NN inference complexity grows linearly with the training set size, the empirical results in Table[28](https://arxiv.org/html/2607.08109#A3.T28)indicate that test\-time latency remains low and stable at practical dataset scales\.
Table 28:Mean and standard deviation of end\-to\-end test\-time latency, measuring the variability ofkk\-NN inference, on the CLAP2015, BID, and LSVQ\-test datasets\.Loss complexity:To provide a clearer comparison of efficiency, we report the per\-batch loss computation time and the GPU memory usage associated with computingLConOrdL\_\{\\text\{ConOrd\}\},LRnCL\_\{\\text\{RnC\}\}, and the BIQA loss used in QCN\. As summarized in Tables[29](https://arxiv.org/html/2607.08109#A3.T29)and[30](https://arxiv.org/html/2607.08109#A3.T30),LConOrdL\_\{\\text\{ConOrd\}\}is the most computationally efficient in terms of runtime, while also maintaining low memory usage compared to prior methods\.
Table 29:Loss\-level computation time on BID \(batch size = 32\)\.Table 30:GPU memory usage for loss computation on BID\.Training time per epoch:To further evaluate scalability beyond per\-batch loss computation time, we report the training time per epoch on both the smaller BID dataset and the larger KonIQ\-10k dataset\. As shown in Table[31](https://arxiv.org/html/2607.08109#A3.T31), despite all\-pair interactions, ConOrd has training cost comparable to RnC\(Zhaet al\.,[2023](https://arxiv.org/html/2607.08109#bib.bib16)\)and is far more efficient than QCN\(Shinet al\.,[2024](https://arxiv.org/html/2607.08109#bib.bib14)\), while scaling well to larger datasets\.
Table 31:Training time per epoch on BID and KonIQ\-10k\.Model efficiency:Table[32](https://arxiv.org/html/2607.08109#A3.T32)compares the model complexity of the proposed BIQA algorithm with those of other recent algorithms\. The proposed algorithm adopts ViT\-B as the encoder, resulting in a complexity of 86M\. While this is not the smallest among the compared models, the proposed algorithm consistently outperforms others across multiple BIQA benchmarks\. In particular, it achieves better performance than LoDa, which uses a larger model, and LQMamba, which employs the same encoder architecture\.
Table 32:Comparison with BIQA algorithms in terms of network complexity\.
## Appendix DRegression Results
Figures[15](https://arxiv.org/html/2607.08109#A4.F15),[16](https://arxiv.org/html/2607.08109#A4.F16), and[17](https://arxiv.org/html/2607.08109#A4.F17)show regression results of the proposed ConOrd on the facial age estimation, BIQA, and BVQA tasks, respectively\.
### D\.1Facial Age Estimation
Figure 15:\(a\) Success and \(b\) failure cases of regression results on the facial age estimation datasets\. Under each image, the estimated age is specified with the ground\-truth in brackets\.
### D\.2Blind Image Quality Assessment
Figure 16:\(a\) Success and \(b\) failure cases of regression results on the BIQA datasets\. Under each image, the estimated quality score is specified with the ground\-truth in brackets\.
### D\.3Blind Video Quality Assessment
Figure 17:\(a\) Success and \(b\) failure cases of regression results on the BVQA datasets\. Under each image, the estimated quality score is specified with the ground\-truth in brackets\.
## Appendix ELimitations
As shown in Appendix[D](https://arxiv.org/html/2607.08109#A4), the proposed algorithm generally demonstrates strong predictive performance across a variety of regression tasks and dataset types\. However, along with successful cases, failure cases are also illustrated in Figures[15](https://arxiv.org/html/2607.08109#A4.F15)\(b\),[16](https://arxiv.org/html/2607.08109#A4.F16)\(b\), and[17](https://arxiv.org/html/2607.08109#A4.F17)\(b\)\. It is observed from Figure[15](https://arxiv.org/html/2607.08109#A4.F15)\(b\) that for the task of facial age estimation, the model may under\- or over\-estimate ages when age\-related visual cues are ambiguous or degraded, such as under atypical lighting conditions, strong shadows, or reduced texture contrast\. From the BIQA and BVQA results in Figures[16](https://arxiv.org/html/2607.08109#A4.F16)\(b\) and[17](https://arxiv.org/html/2607.08109#A4.F17)\(b\), we observe that prediction errors are more frequent when MOS values are extremely low or high\. This appears to stem from the limited representation of such samples in the training data, suggesting that the performance could be further improved by adopting learning strategies that better handle imbalanced data distributions\.Similar Articles
Stochastic Order Learning: An Approach to Rank Estimation Using Noisy Data
This paper reformulates rank estimation with noisy ordinal labels as a stochastic ordering problem and proposes a learning framework (SOL) that captures ordinal label uncertainty through discriminative and stochastic order losses, achieving reliable rank estimation under various noise types.
DiffoR: A Unified Continuous Generative Framework for Universal Ordinal Regression
DiffoR proposes a novel continuous generative framework for ordinal regression using diffusion models, overcoming limitations of discrete methods. Extensive experiments on 12 benchmarks demonstrate state-of-the-art performance across four domains.
Contrastive Weak-to-strong Generalization
Introduces Contrastive Weak-to-Strong Generalization (ConG), a framework that uses contrastive decoding to generate higher-quality samples from weak models for more reliable weak-to-strong generalization in LLMs, demonstrating consistent improvements across model families.
Improving Lexical Difficulty Prediction with Context-Aligned Contrastive Learning and Ridge Ensembling
This paper introduces Context-Aligned Contrastive Regression to improve lexical difficulty prediction by addressing cross-lingual alignment and ordinal structure challenges in language learning datasets.
Reliable Conformal Prediction for Ordinal Classification Using the Ranked Probability Score
Introduces a conformal prediction method for ordinal classification using the ranked probability score as a nonconformity function, producing median-centered contiguous prediction sets and achieving favorable balance between set width and ordinal miscoverage.