UASPL: Uncertainty-Aware Self-Paced Learning with Evidential Neural Networks
Summary
The paper proposes UASPL, a method that integrates predictive reliability into sample selection for self-paced learning using evidential neural networks, improving classification performance and interpretability.
View Cached Full Text
Cached at: 07/09/26, 07:42 AM
# UASPL: Uncertainty-Aware Self-Paced Learning with Evidential Neural Networks
Source: [https://arxiv.org/html/2607.06638](https://arxiv.org/html/2607.06638)
###### Abstract
Self\-paced learning \(SPL\) is an effective learning paradigm that simulates the human learning process by progressing from easy to difficult samples based on the value of the loss function during the learning process\. It has shown great potential in improving model performance and training efficiency\. However, the prediction results of samples with smaller loss values are not necessarily reliable, indicating that such samples are not always simple samples for the model\. Hence, this article proposes an uncertainty\-aware self\-paced learning based on evidential neural networks, termed UASPL, which integrates predictive reliability into sample selection through a general loss function within the Subjective Logic framework\. This loss function incorporates uncertainty estimation and can be extended to different variants of SPL\. Moreover, this loss function couples a sample selection preference, thereby ensuring the interpretability of the sample selection process\. Finally, the experimental results on multiple datasets show that UASPL outperforms other SPL methods in terms of classification performance, interpretability, and generality\. The source code is available at:[https://github\.com/treelife979/UASPL](https://github.com/treelife979/UASPL)\.
###### keywords:
self\-paced learning , evidential deep learning , uncertainty estimation
\\affiliation
\[address1\]College of Information Engineering, Northwest A&F University, Yangling, 712100, Shaanxi, China
\\affiliation
\[address2\]Shaanxi Engineering Research Center for Intelligent Perception and Analysis of Agricultural Information, Northwest A&F University, Shaanxi, China
\\affiliation
\[address3\]Northwest A&F University ShenZhen Research Institute, Shenzhen, 518000, China
## 1Introduction
Self\-paced learning \(SPL\)\[[16](https://arxiv.org/html/2607.06638#bib.bib1)\], rooted in Curriculum Learning \(CL\)\[[1](https://arxiv.org/html/2607.06638#bib.bib2)\], dynamically selects training data in an easy\-to\-hard manner rather than indiscriminately using all training data as in traditional machine learning and deep learning methods, thereby achieving remarkable success in robustness and training efficiency\[[20](https://arxiv.org/html/2607.06638#bib.bib16),[34](https://arxiv.org/html/2607.06638#bib.bib10),[38](https://arxiv.org/html/2607.06638#bib.bib12)\]\. Extensions of SPL mainly improve the framework from two aspects: one focusing on the mathematical design of the self\-paced regularization term to adjust sample weights\[[11](https://arxiv.org/html/2607.06638#bib.bib5),[39](https://arxiv.org/html/2607.06638#bib.bib6),[17](https://arxiv.org/html/2607.06638#bib.bib8)\], and the other involving the introduction of prior knowledge to characterize sample difficulty\[[12](https://arxiv.org/html/2607.06638#bib.bib11),[9](https://arxiv.org/html/2607.06638#bib.bib13),[36](https://arxiv.org/html/2607.06638#bib.bib14)\]\. For the former, anchored in theoretical deduction and formal generalization, it breaks the limitations of traditional regularization terms \(e\.g\., hard/linear forms\) by extending their mathematical structures\. For the latter, it incorporates prior knowledge into the weight constraints, correcting the distributional biases that are solely based on the loss\. These developments have substantially enriched the SPL framework\.
However, a pivotal issue remains insufficiently explored: Are low\-loss samples reliably easy samples that the model requires? Intuitively, the mean relative loss variation \(MRLV\) of simple samples selected in the first round should remain relatively stable in subsequent rounds and should not experience a significant decline\. The experimental result of Fig\.[1](https://arxiv.org/html/2607.06638#S1.F1)contradict this intuition on multiple datasets\. As shown in the Fig\.[1](https://arxiv.org/html/2607.06638#S1.F1), the MRLV fluctuates or decreases significantly in the subsequent training stages, and even becomes negative, which reflects that their losses are increasing in the training stages thereafter\. This anomaly indicates that the samples selected based on the losses in the first round are not reliably easy samples for all stages of the model\.
\(a\)Transfusion
\(b\)Pop
\(c\)Breast\_cancer\_Diagnostic
\(d\)Ionosphere
Figure 1:Mean relative loss variation across rounds on four datasets\.Note:LetS1S\_\{1\}denote the set of samples selected in the first round\. For each roundtt, the relative loss variation of a samplex∈S1x\\in S\_\{1\}is defined asLt−1\(x\)−Lt\(x\)Lt−1\(x\)\+ϵ\\frac\{L\_\{t\-1\}\(x\)\-L\_\{t\}\(x\)\}\{L\_\{t\-1\}\(x\)\+\\epsilon\}, whereLt\(x\)L\_\{t\}\(x\)denotes the loss of samplexxafter roundtt,L0\(x\)L\_\{0\}\(x\)denotes the loss obtained by a forward pass before the first round of self\-paced learning begins, andϵ\\epsilonis a small positive constant used to avoid division by zero\. Each curve reports the mean value of this quantity over all samples inS1S\_\{1\}\.
To better distinguish reliably simple samples from pseudo\-easy ones, this article proposes UASPL, an uncertainty\-aware self\-paced learning approach based on evidential neural networks within the framework of Subjective Logic\. Specifically, UASPL incorporates evidential uncertainty generated by the current model together with the label\-fitting loss, so that sample\-difficulty estimation no longer depends on training loss alone and does not require prior knowledge\. By adaptively guiding the growth of evidence, UASPL further induces an interpretable sample\-selection preference consistent with the easy\-to\-hard learning strategy\. Moreover, this design can also be naturally extended to different SPL variants without substantial modification\. Experimental results on multiple datasets show that UASPL achieves favorable classification performance, interpretability, and generality compared with representative SPL methods\. In conclusion, the contributions of this article are summarized as follows:
\(1\) To the best of our knowledge, UASPL is the first self\-paced learning method to directly incorporate model\-generated evidential uncertainty together with the label\-fitting loss into the self\-paced learning objective, ensuring that it can select reliably simple samples\.
\(2\) The insights into why UASPL works can be well interpreted\. The sample\-selection preference induced by UASPL is consistent with the self\-paced learning principle that reliable easy samples should be selected earlier, while samples with insufficient or misleading evidence should be delayed\.
\(3\) The generality of UASPL beyond a specific SPL formulation is analyzed\. Particularly, UASPL is embedded into different SPL variants, such as the linear and mixture regularizers, to assess whether UASPL is merely tied to a particular regularizer\.
The rest of this paper is organized as follows\. Section[2](https://arxiv.org/html/2607.06638#S2)reviews the related work\. Section[3](https://arxiv.org/html/2607.06638#S3)elaborates on UASPL, including the formulation of the loss function, the corresponding principle and the detailed algorithm\. Section[4](https://arxiv.org/html/2607.06638#S4)presents and analyzes the experimental results on multiple datasets, demonstrating the effectiveness of the proposed method\. Finally, Section[5](https://arxiv.org/html/2607.06638#S5)concludes this paper and outlines the future work\.
## 2Related Work
This section reviews prior studies most relevant to our method, including uncertainty estimation in deep learning and self\-paced learning\.
### 2\.1Uncertainty Estimation in Deep Learning
Uncertainty estimation has been widely studied in deep learning because it provides reliability information regarding the prediction results of the model\. One common line of work derives uncertainty\-related signals directly from model outputs, such as confidence\[[2](https://arxiv.org/html/2607.06638#bib.bib32)\], margin\[[10](https://arxiv.org/html/2607.06638#bib.bib35)\], and the variance of historical predictive probabilities\[[5](https://arxiv.org/html/2607.06638#bib.bib36)\]\. Another influential direction is Bayesian methods\. In this line, Monte Carlo dropout performs multiple stochastic forward passes to approximate Bayesian inference\[[6](https://arxiv.org/html/2607.06638#bib.bib33)\], from which uncertainty measures such as mutual information\[[7](https://arxiv.org/html/2607.06638#bib.bib34)\]and its variants\[[15](https://arxiv.org/html/2607.06638#bib.bib38),[31](https://arxiv.org/html/2607.06638#bib.bib37)\]can be estimated\.
Different from these approaches, evidential deep learning \(EDL\) quantifies predictive uncertainty through an evidential neural network \(ENN\)\[[26](https://arxiv.org/html/2607.06638#bib.bib15),[35](https://arxiv.org/html/2607.06638#bib.bib20)\], which parameterizes a higher\-order Dirichlet distribution over class probabilities within the framework of Subjective Logic\[[4](https://arxiv.org/html/2607.06638#bib.bib22),[37](https://arxiv.org/html/2607.06638#bib.bib21)\], thereby alleviating the overconfidence issue of traditional deep neural networks\[[3](https://arxiv.org/html/2607.06638#bib.bib24),[30](https://arxiv.org/html/2607.06638#bib.bib23)\]\. Under this formulation, the ENN outputs evidence for each class, from which both predictive probabilities and uncertainty estimates can be derived\[[29](https://arxiv.org/html/2607.06638#bib.bib26),[8](https://arxiv.org/html/2607.06638#bib.bib25)\]\. One commonly used loss function in EDL is the Evidential Mean Square Error \(EMSE\), formulated as:
ℒEMSE=∑k=1K\(yk−αkS\)2\+αk\(S−αk\)S2\(S\+1\)\\mathcal\{L\}\_\{\\text\{EMSE\}\}=\\sum\_\{k=1\}^\{K\}\\left\(y\_\{k\}\-\\frac\{\\alpha\_\{k\}\}\{S\}\\right\)^\{2\}\+\\frac\{\\alpha\_\{k\}\(S\-\\alpha\_\{k\}\)\}\{S^\{2\}\(S\+1\)\}\(1\)whereyky\_\{k\}is the one\-hot encoded ground truth andαk=ek\+1\\alpha\_\{k\}=e\_\{k\}\+1\.eke\_\{k\}is the evidence of thek\-th class, andS=∑j=1KαjS=\\sum\_\{j=1\}^\{K\}\\alpha\_\{j\}\. To further guide the learning process, a Kullback–Leibler \(KL\) divergence term is introduced to penalize evidence accumulation on non\-ground\-truth classes, defined as:
ℒKL=KL\[Dir\(α~\)∥Dir\(1,…,1\)\]\\mathcal\{L\}\_\{\\text\{KL\}\}=\\text\{KL\}\\left\[\\text\{Dir\}\(\\tilde\{\\alpha\}\)\\parallel\\text\{Dir\}\(1,\\ldots,1\)\\right\]\(2\)whereα~i=𝐲i\+\(1−𝐲i\)⊙αi\\tilde\{\\alpha\}\_\{i\}=\\mathbf\{y\}\_\{i\}\+\(1\-\\mathbf\{y\}\_\{i\}\)\\odot\\alpha\_\{i\}, and then the final loss function is described as follows:
ℒEDL=ℒEMSE\+λKL⋅ℒKL\\mathcal\{L\}\_\{EDL\}=\\mathcal\{L\}\_\{\\text\{EMSE\}\}\+\\lambda\_\{KL\}\\cdot\\mathcal\{L\}\_\{\\text\{KL\}\}\(3\)whereλKL\\lambda\_\{KL\}is an annealing coefficient\. Furthermore, uncertainty estimationuuis used to assess the reliability of predictions, defined as:
### 2\.2Self\-Paced Learning
Self\-paced learning is a machine learning paradigm that simulates the human learning process by gradually introducing training samples from easy to difficult\[[16](https://arxiv.org/html/2607.06638#bib.bib1),[23](https://arxiv.org/html/2607.06638#bib.bib9),[14](https://arxiv.org/html/2607.06638#bib.bib30)\]\. Specifically, SPL assigns a weight to each sample, prioritizing easy samples at early stages and progressively incorporating more difficult ones\[[33](https://arxiv.org/html/2607.06638#bib.bib29),[13](https://arxiv.org/html/2607.06638#bib.bib28),[25](https://arxiv.org/html/2607.06638#bib.bib27)\]\. The optimization objective of SPL can be expressed as
minw,v∑i=1NviL\(yi,f\(xi;w\)\)\+g\(vi;λ\)\\min\_\{w,v\}\\sum\_\{i=1\}^\{N\}v\_\{i\}L\\left\(y\_\{i\},f\\left\(x\_\{i\};w\\right\)\\right\)\+g\\left\(v\_\{i\};\\lambda\\right\)\(5\)wherexix\_\{i\}andyiy\_\{i\}are the feature and label of thei\-th sample, respectively,f\(xi;w\)f\(x\_\{i\};w\)is the learned model with model parameterww,L\(⋅\)L\(\\cdot\)is the loss function,viv\_\{i\}is the sample weight controlling the learning order, andg\(vi;λ\)g\(v\_\{i\};\\lambda\)is the self\-paced regularizer\. More details of SPL can be found in\[[16](https://arxiv.org/html/2607.06638#bib.bib1),[11](https://arxiv.org/html/2607.06638#bib.bib5),[39](https://arxiv.org/html/2607.06638#bib.bib6)\]\.
Studies on SPL have mainly been conducted from the following two perspectives: how to update sample weights and how to characterize sample difficulty during progressive learning\. One important line of work redesigns self\-paced regularizers to obtain more flexible weighting behavior in different learning scenarios\. Representative studies have introduced multiple soft regularizers for self\-paced reranking\[[11](https://arxiv.org/html/2607.06638#bib.bib5)\], extended SPL to matrix factorization\[[39](https://arxiv.org/html/2607.06638#bib.bib6)\], developed general self\-paced functions for multi\-label learning\[[17](https://arxiv.org/html/2607.06638#bib.bib8)\], and proposed dynamic or adaptive weighting strategies for convolutional or cost\-sensitive settings\[[18](https://arxiv.org/html/2607.06638#bib.bib7),[19](https://arxiv.org/html/2607.06638#bib.bib17)\]\. Although these studies improve the flexibility of the SPL framework, sample selection still relies primarily on loss\-based criteria, making it difficult to select truly simple samples, as shown in Fig\.[1](https://arxiv.org/html/2607.06638#S1.F1)\.
Another popular line of work incorporates additional information beyond the training loss for sample\-difficulty estimation\. For example, Self\-Paced Learning with Statistics Uncertainty Prior \(SPUP\) introduces a statistics uncertainty prior into SPL, which alleviates the bias of purely loss\-based selection\[[9](https://arxiv.org/html/2607.06638#bib.bib13)\]\. Weighted self\-paced learning with belief functions \(WSPLBF\) combines learning loss with belief\-function\-based evidential uncertainty to refine sample selection\[[36](https://arxiv.org/html/2607.06638#bib.bib14)\]\. Although these studies suggest that using uncertainty as an additional prior can improve sample\-difficulty estimation, they differ essentially from UASPL, as shown in Table[1](https://arxiv.org/html/2607.06638#S2.T1)\.
Table 1:Comparison between UASPL and prior self\-paced learning methods\.MethodDirichletparametersUncertaintyInternalDynamicTraditional SPL×\\times×\\times×\\times×\\timesSPUP×\\times×\\times✓×\\timesWSPLBF×\\times×\\times×\\times✓UASPL✓✓✓✓Table[1](https://arxiv.org/html/2607.06638#S2.T1)summarizes the main distinctions between UASPL and prior self\-paced learning methods from the following four perspectives: \(1\) Compared with traditional SPL, SPUP, and WSPLBF, UASPL parameterizes a Dirichlet distribution over class probabilities rather than point\-estimate probabilities, enabling predictive uncertainty quantification\. \(2\) Uncertainty in UASPL is generated internally by the current evidential model, whereas SPUP relies on a predefined Gaussian perturbation over latent sample weights and WSPLBF constructs uncertainty externally from belief functions\. \(3\) Uncertainty in UASPL evolves with model\-parameter updates during training\. In contrast, the uncertainty in WSPLBF remains fixed with respect to the learned classifier, while the dynamics in SPUP mainly comes from the pace\-dependent uncertainty prior rather than model\-generated uncertainty\. \(4\) Although WSPLBF also uses uncertainty in its sample\-selection criterion, UASPL differs in that its selection preference is shaped by uncertainty estimated from the current model state\. Furthermore, as illustrated in Fig\.[1](https://arxiv.org/html/2607.06638#S1.F1), both SPUP and WSPLBF still have room for improvement in selecting truly easy samples\.
## 3Uncertainty\-Aware Self\-Paced Learning
In order to select truly simple samples based on the loss value, this section details the UASPL, including its loss function, theoretical principle and detailed algorithmic implementation\.
### 3\.1UASPL Model
Uncertainty estimation \(or reliability estimation\) quantifies the prediction confidence of the model for the sample, reflecting the learning ability of current model\[[32](https://arxiv.org/html/2607.06638#bib.bib18),[22](https://arxiv.org/html/2607.06638#bib.bib19)\]\. Nevertheless, existing self\-paced learning methods only focus on the label fitting loss of sample to measure sample difficulty during the training process, while neglecting uncertainty estimation of predictions, making it challenging to select truly simple samples\. Thus, this subsection designs a general loss function, which incorporates the reliability of predictions into the sample selection strategy based on the loss values of samples, facilitating the selection of reliably simple samples\. The specific form is elaborated below\.
Suppose thatx=\[x1,…,xn\]x=\[x\_\{1\},\.\.\.,x\_\{n\}\]is the training samples,y=\[y1,…,yn\]y=\[y\_\{1\},\.\.\.,y\_\{n\}\]is the labels for corresponding samples\. Accordinglyv=\[v1,…,vn\]Tv=\[v\_\{1\},\.\.\.,v\_\{n\}\]^\{T\}denotes a vector of weight variables for each training sample andwis the model parameter\. Given an input samplexix\_\{i\}, the EDL model outputs nonnegative evidence valuesei=\[ei1,ei2,…,eiK\]e\_\{i\}=\[e\_\{i1\},e\_\{i2\},\\ldots,e\_\{iK\}\]and the corresponding Dirichlet parametersαi=\[αi1,αi2,…,αiK\]\\alpha\_\{i\}=\[\\alpha\_\{i1\},\\alpha\_\{i2\},\\ldots,\\alpha\_\{iK\}\]forKKclasses\. Following the EDL notation introduced in Section[2](https://arxiv.org/html/2607.06638#S2), we haveαij=eij\+1\\alpha\_\{ij\}=e\_\{ij\}\+1,Si=∑j=1KαijS\_\{i\}=\\sum\_\{j=1\}^\{K\}\\alpha\_\{ij\}, andui=K/Siu\_\{i\}=K/S\_\{i\}\. Therefore, the learning objective of UASPL, which integrates both uncertainty estimation and loss values of samples, is formulated as follows:
ℒ\(x,y;w,v\)\\displaystyle\\mathcal\{L\}\(x,y;w,v\)=∑i=1nviℒtotal\(i\)\(x,y;w\)−λ∑i=1nvi\\displaystyle=\\sum\_\{i=1\}^\{n\}v\_\{i\}\\mathcal\{L\}\_\{\\text\{total\}\}^\{\(i\)\}\(x,y;w\)\-\\lambda\\sum\_\{i=1\}^\{n\}v\_\{i\}=∑i=1nvi\(ℒEMSE\(i\)\(x,y;w\)\+\(\(1−ci\)\(1−ui\)\+ciui\)ℒKL\(i\)\(x,y;w\)\)−λ∑i=1nvi,\\displaystyle=\\sum\_\{i=1\}^\{n\}v\_\{i\}\\left\(\\mathcal\{L\}\_\{\\text\{EMSE\}\}^\{\(i\)\}\(x,y;w\)\+\\left\(\(1\-c\_\{i\}\)\(1\-u\_\{i\}\)\+c\_\{i\}u\_\{i\}\\right\)\\mathcal\{L\}\_\{\\text\{KL\}\}^\{\(i\)\}\(x,y;w\)\\right\)\-\\lambda\\sum\_\{i=1\}^\{n\}v\_\{i\},\(6\)whereλ\\lambdais the age parameter in the self\-paced hard regularizer\. In Eq\.[3\.1](https://arxiv.org/html/2607.06638#S3.Ex1),ℒtotal\(i\)\\mathcal\{L\}\_\{\\text\{total\}\}^\{\(i\)\}denotes the uncertainty\-aware loss of theii\-th sample before being weighted by variableviv\_\{i\}\. It combines the label\-fitting term and the uncertainty\-weighted KL term, and is formulated as
ℒtotal\(i\)=ℒEMSE\(i\)\+coeffiℒKL\(i\),\\mathcal\{L\}\_\{\\text\{total\}\}^\{\(i\)\}=\\mathcal\{L\}\_\{\\text\{EMSE\}\}^\{\(i\)\}\+\\text\{coeff\}\_\{i\}\\mathcal\{L\}\_\{\\text\{KL\}\}^\{\(i\)\},\(7\)whereℒEMSE\(i\)\\mathcal\{L\}\_\{\\text\{EMSE\}\}^\{\(i\)\}is the Evidential Mean Square Error,ℒKL\(i\)\\mathcal\{L\}\_\{\\text\{KL\}\}^\{\(i\)\}is the Kullback–Leibler divergence term, and the coefficientcoeffi\\text\{coeff\}\_\{i\}is given by
coeffi=\{ui,ifci=1,1−ui,ifci=0,\\text\{coeff\}\_\{i\}=\\begin\{cases\}u\_\{i\},&\\text\{if \}c\_\{i\}=1,\\\\\[4\.0pt\] 1\-u\_\{i\},&\\text\{if \}c\_\{i\}=0,\\end\{cases\}\(8\)which can be compactly rewritten ascoeffi=\(1−ci\)\(1−ui\)\+ciui\\text\{coeff\}\_\{i\}=\(1\-c\_\{i\}\)\(1\-u\_\{i\}\)\+c\_\{i\}u\_\{i\}\. Here,uiu\_\{i\}denotes the evidential uncertainty of theii\-th sample, andcic\_\{i\}is the prediction correctness indicator, withci=1c\_\{i\}=1for a correct prediction andci=0c\_\{i\}=0otherwise\. The coefficient is designed to adaptively adjust the inhibitory effect of the KL term on non\-target\-label evidence according to both evidence sufficiency and prediction correctness\. For correctly predicted samples, higher uncertainty indicates insufficient supporting evidence, so settingcoeffi=ui\\text\{coeff\}\_\{i\}=u\_\{i\}strengthens the KL effect and guides reliable evidence growth by inhibiting non\-target\-label evidence\. For incorrectly predicted samples, lower uncertainty indicates confident but misleading evidence, so settingcoeffi=1−ui\\text\{coeff\}\_\{i\}=1\-u\_\{i\}strengthens the KL effect and suppresses erroneous evidence accumulation\.
### 3\.2UASPL Principle and Algorithm
The previous subsection presents a loss function that aggregates the uncertainty estimation and the label\-fitting loss\. This subsection will analyze a sample selection preference guided by the loss function\. For the subsequent analysis, letmmdenote an arbitrary class label of theii\-th sample, whilellandkkdenote the target label and the non\-target label of theii\-th sample, respectively\.
In Eq\.[3\.1](https://arxiv.org/html/2607.06638#S3.Ex1),ℒtotal\(i\)\\mathcal\{L\}\_\{\\text\{total\}\}^\{\(i\)\}is weighted byviv\_\{i\}, while the self\-paced regularization term−λ∑r=1nvr\-\\lambda\\sum\_\{r=1\}^\{n\}v\_\{r\}is independent of the Dirichlet parameters\. Hence, taking the derivative ofℒ\\mathcal\{L\}with respect toαim\\alpha\_\{im\}gives
∂ℒ∂αim=vi∂ℒtotal\(i\)∂αim\+∂∂αim\(−λ∑r=1nvr\)=vi∂ℒtotal\(i\)∂αim\.\\frac\{\\partial\\mathcal\{L\}\}\{\\partial\\alpha\_\{im\}\}=v\_\{i\}\\frac\{\\partial\\mathcal\{L\}\_\{\\text\{total\}\}^\{\(i\)\}\}\{\\partial\\alpha\_\{im\}\}\+\\frac\{\\partial\}\{\\partial\\alpha\_\{im\}\}\\left\(\-\\lambda\\sum\_\{r=1\}^\{n\}v\_\{r\}\\right\)=v\_\{i\}\\frac\{\\partial\\mathcal\{L\}\_\{\\text\{total\}\}^\{\(i\)\}\}\{\\partial\\alpha\_\{im\}\}\.\(9\)Obviously, the derivative ofℒ\\mathcal\{L\}with respect toαim\\alpha\_\{im\}is given by the weighted sample\-wise derivativevi∂ℒtotal\(i\)∂αimv\_\{i\}\\frac\{\\partial\\mathcal\{L\}\_\{\\text\{total\}\}^\{\(i\)\}\}\{\\partial\\alpha\_\{im\}\}\. Here,viv\_\{i\}only scales the sample\-wise gradient and does not change the preference determined byℒtotal\(i\)\\mathcal\{L\}\_\{\\text\{total\}\}^\{\(i\)\}\. Thus, to analyze the sample\-selection preference induced by UASPL, we focus on∂ℒtotal\(i\)∂αim\\frac\{\\partial\\mathcal\{L\}\_\{\\text\{total\}\}^\{\(i\)\}\}\{\\partial\\alpha\_\{im\}\}\. According to Eq\.[7](https://arxiv.org/html/2607.06638#S3.E7), the derivative ofℒtotal\(i\)\\mathcal\{L\}\_\{\\text\{total\}\}^\{\(i\)\}with respect toαim\\alpha\_\{im\}is
∂ℒtotal\(i\)∂αim=∂ℒEMSE\(i\)∂αim\+coeffi∂ℒKL\(i\)∂αim\+ℒKL\(i\)∂coeffi∂αim\.\\frac\{\\partial\\mathcal\{L\}\_\{\\text\{total\}\}^\{\(i\)\}\}\{\\partial\\alpha\_\{im\}\}=\\frac\{\\partial\\mathcal\{L\}\_\{\\text\{EMSE\}\}^\{\(i\)\}\}\{\\partial\\alpha\_\{im\}\}\+\\text\{coeff\}\_\{i\}\\frac\{\\partial\\mathcal\{L\}\_\{\\text\{KL\}\}^\{\(i\)\}\}\{\\partial\\alpha\_\{im\}\}\+\\mathcal\{L\}\_\{\\text\{KL\}\}^\{\(i\)\}\\frac\{\\partial\\text\{coeff\}\_\{i\}\}\{\\partial\\alpha\_\{im\}\}\.\(10\)
\(1\) Analysis of the first term in Eq\.[10](https://arxiv.org/html/2607.06638#S3.E10)\. The formula for the EMSE is presented as follows:
ℒEMSE\(i\)\\displaystyle\\mathcal\{L\}\_\{EMSE\}^\{\(i\)\}=∑j=1K\[\(yij−E\[pij\]\)2\+Var\(pij\)\]\\displaystyle=\\sum\_\{j=1\}^\{K\}\\left\[\\left\(y\_\{ij\}\-E\[p\_\{ij\}\]\\right\)^\{2\}\+\\mathrm\{Var\}\(p\_\{ij\}\)\\right\]=∑j=1K\(yij−αijSi\)2⏟ℒijerr\+αij\(Si−αij\)Si2\(Si\+1\)⏟ℒijvar\\displaystyle=\\sum\_\{j=1\}^\{K\}\\underbrace\{\\left\(y\_\{ij\}\-\\frac\{\\alpha\_\{ij\}\}\{S\_\{i\}\}\\right\)^\{2\}\}\_\{\\mathcal\{L\}\_\{ij\}^\{err\}\}\+\\underbrace\{\\frac\{\\alpha\_\{ij\}\(S\_\{i\}\-\\alpha\_\{ij\}\)\}\{S\_\{i\}^\{2\}\(S\_\{i\}\+1\)\}\}\_\{\\mathcal\{L\}\_\{ij\}^\{var\}\}=∑j=1K\[\(yij−μij\)2\+σij2\],\\displaystyle=\\sum\_\{j=1\}^\{K\}\\left\[\\left\(y\_\{ij\}\-\\mu\_\{ij\}\\right\)^\{2\}\+\\sigma\_\{ij\}^\{2\}\\right\],\(11\)To facilitate the subsequent analysis, the results of taking the partial derivatives ofμij\\mu\_\{ij\}andσij\\sigma\_\{ij\}in Eq\.[3\.2](https://arxiv.org/html/2607.06638#S3.Ex2)with respect to the Dirichlet parameterαim\\alpha\_\{im\}\(wheremrepresents any label of theii\-th sample\) are displayed as follows:
∂μij∂αim=Si−αijSi2\(\>0,j=m\)∂μij∂αim=−αijSi2\(<0,j≠m\)\\frac\{\\partial\\mu\_\{ij\}\}\{\\partial\\alpha\_\{im\}\}=\\frac\{S\_\{i\}\-\\alpha\_\{ij\}\}\{S\_\{i\}^\{2\}\}\\left\(\>0,j=m\\right\)\\quad\\frac\{\\partial\\mu\_\{ij\}\}\{\\partial\\alpha\_\{im\}\}=\-\\frac\{\\alpha\_\{ij\}\}\{S\_\{i\}^\{2\}\}\\left\(<0,j\\neq m\\right\)\(12\)∂σij2∂αim=\(1−2μij\)Si\+1∂μij∂αim−μij\(1−μij\)\(Si\+1\)2∂Si∂αim⏟=1\\frac\{\\partial\\sigma\_\{ij\}^\{2\}\}\{\\partial\\alpha\_\{im\}\}=\\frac\{\\left\(1\-2\\mu\_\{ij\}\\right\)\}\{S\_\{i\}\+1\}\\frac\{\\partial\\mu\_\{ij\}\}\{\\partial\\alpha\_\{im\}\}\-\\frac\{\\mu\_\{ij\}\\left\(1\-\\mu\_\{ij\}\\right\)\}\{\\left\(S\_\{i\}\+1\\right\)^\{2\}\}\\underbrace\{\\frac\{\\partial S\_\{i\}\}\{\\partial\\alpha\_\{im\}\}\}\_\{=1\}\(13\)
Next, we sequentially analyze the partial derivatives ofℒEMSE\(i\)\\mathcal\{L\}\_\{EMSE\}^\{\(i\)\}andℒKL\(i\)\\mathcal\{L\}\_\{KL\}^\{\(i\)\}with respect toαil\\alpha\_\{il\}andαik\\alpha\_\{ik\}\.
1For the target labelllof theii\-th sample, the partial derivative ofℒEMSE\\mathcal\{L\}\_\{EMSE\}with respect to the Dirichlet parameterαil\\alpha\_\{il\}can be calculated as follows:
∂ℒEMSE\(i\)∂αil\\displaystyle\\frac\{\\partial\\mathcal\{L\}\_\{EMSE\}^\{\(i\)\}\}\{\\partial\\alpha\_\{il\}\}=∑j=1K∂ℒijerr∂αil\+∂ℒijvar∂αil\\displaystyle=\\sum\_\{j=1\}^\{K\}\\frac\{\\partial\\mathcal\{L\}\_\{ij\}^\{err\}\}\{\\partial\\alpha\_\{il\}\}\+\\frac\{\\partial\\mathcal\{L\}\_\{ij\}^\{var\}\}\{\\partial\\alpha\_\{il\}\}=∑j=1K\(−2\)\(yij−μij\)∂μij∂αil\+\[\(1−2μijSi\+1\)∂μij∂αil−μij\(1−μij\)\(Si\+1\)2\]\\displaystyle=\\sum\_\{j=1\}^\{K\}\\left\(\-2\\right\)\\left\(y\_\{ij\}\-\\mu\_\{ij\}\\right\)\\frac\{\\partial\\mu\_\{ij\}\}\{\\partial\\alpha\_\{il\}\}\+\\left\[\\left\(\\frac\{1\-2\\mu\_\{ij\}\}\{S\_\{i\}\+1\}\\right\)\\frac\{\\partial\\mu\_\{ij\}\}\{\\partial\\alpha\_\{il\}\}\-\\frac\{\\mu\_\{ij\}\\left\(1\-\\mu\_\{ij\}\\right\)\}\{\\left\(S\_\{i\}\+1\\right\)^\{2\}\}\\right\]\(14\)
Whenj=lj=landj≠lj\\neq lin the prediction error term\(−2\)\(yij−μij\)∂μij∂αil\\left\(\-2\\right\)\\left\(y\_\{ij\}\-\\mu\_\{ij\}\\right\)\\frac\{\\partial\\mu\_\{ij\}\}\{\\partial\\alpha\_\{il\}\}in Eq\.[3\.2](https://arxiv.org/html/2607.06638#S3.Ex4), the partial derivative of the prediction error term is respectively exhibited as follows:
−2\(1−μil\)∂μil∂αil⏟\>0<0,−2∑j=1,j≠lK\(−μij\)∂μij∂αil⏟<0<0\-2\\left\(1\-\\mu\_\{il\}\\right\)\\underbrace\{\\frac\{\\partial\\mu\_\{il\}\}\{\\partial\\alpha\_\{il\}\}\}\_\{\>0\}<0,\\quad\-2\\sum\_\{j=1,j\\neq l\}^\{K\}\\left\(\-\\mu\_\{ij\}\\right\)\\underbrace\{\\frac\{\\partial\\mu\_\{ij\}\}\{\\partial\\alpha\_\{il\}\}\}\_\{<0\}<0\(15\)It can be seen from Eq\.[15](https://arxiv.org/html/2607.06638#S3.E15)that the partial derivative of the prediction error term in Eq\.[3\.2](https://arxiv.org/html/2607.06638#S3.Ex4)is negative for bothj=lj=landj≠lj\\neq l\. In the derivative of the predicted variance term, for the second term,−μij\(1−μij\)\(Si\+1\)2<0\-\\frac\{\\mu\_\{ij\}\\left\(1\-\\mu\_\{ij\}\\right\)\}\{\\left\(S\_\{i\}\+1\\right\)^\{2\}\}<0because ofμij∈\(0,1\)\\mu\_\{ij\}\\in\\left\(0,1\\right\)\. For the first term in the predicted variance term, its value depends on the value ofμij\\mu\_\{ij\}and whetherjjis equal toll, which can be either greater than 0 or less than 0\. Hence, for a definite judgment,∂ℒEMSE\(i\)∂αil\\frac\{\\partial\\mathcal\{L\}\_\{EMSE\}^\{\(i\)\}\}\{\\partial\\alpha\_\{il\}\}is described as follows:
∂ℒEMSE\(i\)∂αil=\(∂ℒilerr∂αil\+∂ℒilvar∂αil\)\+∑j=1,j≠lK\(∂ℒijerr∂αil\+∂ℒijvar∂αil\)\\frac\{\\partial\\mathcal\{L\}\_\{EMSE\}^\{\(i\)\}\}\{\\partial\\alpha\_\{il\}\}=\(\\frac\{\\partial\\mathcal\{L\}\_\{il\}^\{err\}\}\{\\partial\\alpha\_\{il\}\}\+\\frac\{\\partial\\mathcal\{L\}\_\{il\}^\{var\}\}\{\\partial\\alpha\_\{il\}\}\)\+\\sum\_\{j=1,j\\neq l\}^\{K\}\(\\frac\{\\partial\\mathcal\{L\}\_\{ij\}^\{err\}\}\{\\partial\\alpha\_\{il\}\}\+\\frac\{\\partial\\mathcal\{L\}\_\{ij\}^\{var\}\}\{\\partial\\alpha\_\{il\}\}\)\(16\)
For the target labellland the non\-target labels:
∂ℒilerr∂αil\+∂ℒilvar∂αil=2Si\(μil−1\)−1Si\+1⋅1−μilSi⏟<0−μil\(1−μil\)\(Si\+1\)2⏟<0<0\\frac\{\\partial\\mathcal\{L\}\_\{il\}^\{err\}\}\{\\partial\\alpha\_\{il\}\}\+\\frac\{\\partial\\mathcal\{L\}\_\{il\}^\{var\}\}\{\\partial\\alpha\_\{il\}\}=\\underbrace\{\\frac\{2S\_\{i\}\\left\(\\mu\_\{il\}\-1\\right\)\-1\}\{S\_\{i\}\+1\}\\cdot\\frac\{1\-\\mu\_\{il\}\}\{S\_\{i\}\}\}\_\{<0\}\\underbrace\{\-\\frac\{\\mu\_\{il\}\\left\(1\-\\mu\_\{il\}\\right\)\}\{\\left\(S\_\{i\}\+1\\right\)^\{2\}\}\}\_\{<0\}<0
∑j=1,j≠lK\(∂ℒijerr∂αil\+∂ℒijvar∂αil\)=∑j=1,j≠lK\(−μij\(2Sijμij\+1\)\(Si\+1\)Si⏟<0−μij\(1−μij\)\(Si\+1\)2⏟<0\)<0\\sum\_\{j=1,j\\neq l\}^\{K\}\(\\frac\{\\partial\\mathcal\{L\}\_\{ij\}^\{err\}\}\{\\partial\\alpha\_\{il\}\}\+\\frac\{\\partial\\mathcal\{L\}\_\{ij\}^\{var\}\}\{\\partial\\alpha\_\{il\}\}\)=\\sum\_\{j=1,j\\neq l\}^\{K\}\(\\underbrace\{\\frac\{\-\\mu\_\{ij\}\\left\(2S\_\{ij\}\\mu\_\{ij\}\+1\\right\)\}\{\(S\_\{i\}\+1\)S\_\{i\}\}\}\_\{<0\}\\underbrace\{\-\\frac\{\\mu\_\{ij\}\\left\(1\-\\mu\_\{ij\}\\right\)\}\{\\left\(S\_\{i\}\+1\\right\)^\{2\}\}\}\_\{<0\}\)<0
Thus,∂ℒEMSE\(i\)∂αil<0\\frac\{\\partial\\mathcal\{L\}\_\{EMSE\}^\{\(i\)\}\}\{\\partial\\alpha\_\{il\}\}<0\.
2For the non\-target labelkkof theii\-th sample, a general result of the partial derivative of theℒEMSE\(i\)\\mathcal\{L\}\_\{EMSE\}^\{\(i\)\}with respect to the Dirichlet parameterαik\\alpha\_\{ik\}is calculated as follows:∂ℒEMSE\(i\)∂αik=2αilS2−2\(S−αik\)S\(S\+1\)\+∑j=1K\(2S\+1\)αij\(S−αij\)\(S2\+S\)2\\frac\{\\partial\\mathcal\{L\}\_\{EMSE\}^\{\(i\)\}\}\{\\partial\\alpha\_\{ik\}\}=\\frac\{2\\alpha\_\{il\}\}\{S^\{2\}\}\-\\frac\{2\\left\(S\-\\alpha\_\{ik\}\\right\)\}\{S\\left\(S\+1\\right\)\}\+\\sum\_\{j=1\}^\{K\}\\frac\{\\left\(2S\+1\\right\)\\alpha\_\{ij\}\\left\(S\-\\alpha\_\{ij\}\\right\)\}\{\\left\(S^\{2\}\+S\\right\)^\{2\}\}\. For the sake of comparison, the expression in Eq\.[3\.2](https://arxiv.org/html/2607.06638#S3.Ex4)can be written as:∂ℒEMSE\(i\)∂αil=2αilS2−2S−2\(S−αil\)S\(S\+1\)\+∑j=1K\(2S\+1\)αij\(S−αij\)\(S2\+S\)2\\frac\{\\partial\\mathcal\{L\}\_\{EMSE\}^\{\(i\)\}\}\{\\partial\\alpha\_\{il\}\}=\\frac\{2\\alpha\_\{il\}\}\{S^\{2\}\}\-\\frac\{2\}\{S\}\-\\frac\{2\\left\(S\-\\alpha\_\{il\}\\right\)\}\{S\\left\(S\+1\\right\)\}\+\\sum\_\{j=1\}^\{K\}\\frac\{\\left\(2S\+1\\right\)\\alpha\_\{ij\}\\left\(S\-\\alpha\_\{ij\}\\right\)\}\{\\left\(S^\{2\}\+S\\right\)^\{2\}\}\. Obviously, whenαik=αil\\alpha\_\{ik\}=\\alpha\_\{il\},∂ℒEMSE\(i\)∂αil<∂ℒEMSE\(i\)∂αik\\frac\{\\partial\\mathcal\{L\}\_\{EMSE\}^\{\(i\)\}\}\{\\partial\\alpha\_\{il\}\}<\\frac\{\\partial\\mathcal\{L\}\_\{EMSE\}^\{\(i\)\}\}\{\\partial\\alpha\_\{ik\}\}\.∂ℒEMSE\(i\)∂αil\\frac\{\\partial\\mathcal\{L\}\_\{EMSE\}^\{\(i\)\}\}\{\\partial\\alpha\_\{il\}\}is definitely less than 0, while∂ℒEMSE\(i\)∂αik\\frac\{\\partial\\mathcal\{L\}\_\{EMSE\}^\{\(i\)\}\}\{\\partial\\alpha\_\{ik\}\}can be either positive or negative\. Thus, the model’s driving effect on the increase of evidence for non\-target labels is definitely smaller than that on the target label\.
\(2\) Analysis of the second term in Eq\.[10](https://arxiv.org/html/2607.06638#S3.E10)\. For the target labelllof theii\-th sample, it is obvious that the KL divergence term has a derivative of 0 with respect toαil\\alpha\_\{il\}, i\.e\.,∂ℒKL\(i\)∂αil=0\\frac\{\\partial\\mathcal\{L\}\_\{\\text\{KL\}\}^\{\(i\)\}\}\{\\partial\\alpha\_\{il\}\}=0\. Moreover, for the non\-target labelkkof theii\-th sample, the partial derivative of KL divergence term with respect toαik\\alpha\_\{ik\}is shown as follows:
∂ℒKL\(i\)∂αik=\(αik−1\)ψ′\(αik\)−\(S~i−K\)ψ′\(S~i\)\\frac\{\\partial\\mathcal\{L\}\_\{\\text\{KL\}\}^\{\(i\)\}\}\{\\partial\\alpha\_\{ik\}\}=\\left\(\\alpha\_\{ik\}\-1\\right\)\{\\psi\}^\{\\prime\}\\left\(\\alpha\_\{ik\}\\right\)\-\\left\(\\widetilde\{S\}\_\{i\}\-K\\right\)\{\\psi\}^\{\\prime\}\\left\(\\widetilde\{S\}\_\{i\}\\right\)\(17\)whereSi~=∑j=1,j≠lKαij\+1\\widetilde\{S\_\{i\}\}=\\sum\_\{j=1,j\\neq l\}^\{K\}\\alpha\_\{ij\}\+1\. Based on the properties and limit behavior of the Trigamma function, when the evidence is insufficient \(S→K,αik→1S\\rightarrow K,\\alpha\_\{ik\}\\rightarrow 1\), the value of Eq\.[17](https://arxiv.org/html/2607.06638#S3.E17)tends to be greater than 0\. When the evidence is sufficient \(S→∞S\\rightarrow\\infty\), the value of Eq\.[17](https://arxiv.org/html/2607.06638#S3.E17)needs to be discussed in the following two cases\. For one, the value of Eq\.[17](https://arxiv.org/html/2607.06638#S3.E17)tends to 0 when the evidence is evenly distributed\. For another, when the evidence is unevenly distributed, the partial derivative corresponding to the non\-target label with the maximum evidence is positive \(pushing the evidence to contract and suppressing excessive accumulation\), while the partial derivatives corresponding to the other non\-target labels are negative \(pushing the evidence to grow relatively and calibrating the uniformity of the distribution\)\.
In addition, thecoeffi\\text\{coeff\}\_\{i\}, which incorporates the prediction correctness indicatorcic\_\{i\}and uncertaintyuiu\_\{i\}, only scales the value of∂ℒKL\(i\)∂αim\\frac\{\\partial\\mathcal\{L\}\_\{KL\}^\{\(i\)\}\}\{\\partial\\alpha\_\{im\}\}rather than change the sign of∂ℒKL\(i\)∂αim\\frac\{\\partial\\mathcal\{L\}\_\{KL\}^\{\(i\)\}\}\{\\partial\\alpha\_\{im\}\}\. Specifically, when samples are correctly predicted \(coeffi=ui\\text\{coeff\}\_\{i\}=u\_\{i\}\), increased uncertainty enhances the regulatory effect of the KL divergence term\. In contrast, when samples are incorrectly predicted \(coeffi=1−ui\\text\{coeff\}\_\{i\}=1\-u\_\{i\}\), reduced uncertainty strengthens this regulatory effect\.
\(3\) Analysis of the third term in Eq\.[10](https://arxiv.org/html/2607.06638#S3.E10)\. The third term in Eq\.[10](https://arxiv.org/html/2607.06638#S3.E10)is computed as
ℒKL\(i\)∂coeffi∂αim=ℒKL\(i\)\(2ci−1\)\(−KSi2\)\.\\mathcal\{L\}\_\{\\text\{KL\}\}^\{\(i\)\}\\frac\{\\partial\\text\{coeff\}\_\{i\}\}\{\\partial\\alpha\_\{im\}\}=\\mathcal\{L\}\_\{\\text\{KL\}\}^\{\(i\)\}\(2c\_\{i\}\-1\)\\left\(\-\\frac\{K\}\{S\_\{i\}^\{2\}\}\\right\)\.For the target labelllor the non\-target labelkkof theii\-th sample, the value of the third term in Eq\.[10](https://arxiv.org/html/2607.06638#S3.E10)is the same, which does not affect the relative magnitudes of∂ℒtotal\(i\)/∂αil\\partial\\mathcal\{L\}\_\{\\text\{total\}\}^\{\(i\)\}/\\partial\\alpha\_\{il\}and∂ℒtotal\(i\)/∂αik\\partial\\mathcal\{L\}\_\{\\text\{total\}\}^\{\(i\)\}/\\partial\\alpha\_\{ik\}\. Furthermore, it adjusts the total evidence strength according to prediction correctness\. That is to say, whenci=1c\_\{i\}=1, the third term is negative, which increases the Dirichlet parameters under gradient descent and encourages evidence accumulation\. Whenci=0c\_\{i\}=0, the third term is positive, which decreases the Dirichlet parameters under gradient descent and suppresses evidence accumulation\.
\(4\) Interpretable Sample Selection Preference in UASPL\.
Based on the above analysis, the sample\-selection preference induced by UASPL can be revealed by sortingℒtotal\(i\)\\mathcal\{L\}\_\{\\text\{total\}\}^\{\(i\)\}in ascending order, yielding the following easier\-to\-harder sequence:
- 1\.correct prediction with low uncertainty
- 2\.correct prediction with high uncertainty
- 3\.incorrect prediction with high uncertainty
- 4\.incorrect prediction with low uncertainty
This ordering can be understood from the roles of prediction correctness and evidential uncertainty inℒtotal\(i\)\\mathcal\{L\}\_\{\\text\{total\}\}^\{\(i\)\}\. Correctly predicted samples usually have smaller EMSE loss than incorrectly predicted ones\. For correctly predicted samples, wherecoeffi=ui\\text\{coeff\}\_\{i\}=u\_\{i\}, lower uncertainty reduces the contribution of the KL term and leads to a smallerℒtotal\(i\)\\mathcal\{L\}\_\{\\text\{total\}\}^\{\(i\)\}\. For incorrectly predicted samples, wherecoeffi=1−ui\\text\{coeff\}\_\{i\}=1\-u\_\{i\}, higher uncertainty reduces the contribution of the KL term, whereas low uncertainty indicates misleading evidence and results in a largerℒtotal\(i\)\\mathcal\{L\}\_\{\\text\{total\}\}^\{\(i\)\}\.
For these four categories of samples with progressively increasing difficulty levels, UASPL produces different evidence\-adjustment effects, as indicated by the preceding derivative analysis\. Firstly, samples that are accurately predicted with low uncertainty are reliably simple samples for the current model, while samples that are accurately predicted but have high uncertainty are samples within the learning scope of the model but do not yet have sufficient evidence to support the prediction\. For the former, the regularization term in Eq\.[3\.1](https://arxiv.org/html/2607.06638#S3.Ex1)mitigates the influence of the KL divergence term, allowing the model to pay more attention to the accumulation of evidence on the target labels, while for the latter, it guides the correct growth of evidence by intensifying the inhibitory effect on the non\-target label evidence\. Secondly, samples with incorrect predictions but high uncertainty indicate that the model makes the incorrect prediction due to the lack of sufficient evidence accumulation, while samples with incorrect predictions but low uncertainty suggest that the model makes a confident but incorrect prediction due to the accumulation of erroneous evidence\. For the former, by reducing the coefficient in front of the KL divergence term, the model is allowed to explore more freely\. For the latter, the regularization term increases its regulatory effect on imbalanced evidence by amplifying the coefficient in front of the KL divergence term, thereby suppressing the accumulation of evidence on incorrect class labels\. Therefore, UASPL prioritizes reliably easy samples, selectively explores samples with insufficient evidence, and defers samples with misleading evidence, aligning with the easy\-to\-hard learning principle of SPL\. The full procedure of UASPL is shown in Fig\.[2](https://arxiv.org/html/2607.06638#S3.F2), and the detailed algorithm of UASPL using the aforementioned loss function is presented in Algorithm[1](https://arxiv.org/html/2607.06638#algorithm1)\.
Figure 2:Framework of UASPL and comparison with prior SPL methods\. Traditional SPL estimates sample difficulty mainly according to training loss\. SPL with additional information further incorporates external auxiliary information into the difficulty measure\. In contrast, UASPL integrates model\-generated evidential uncertainty and the label\-fitting loss into the self\-paced learning objective to characterize sample difficulty, thereby enabling reliability\-aware selection\. The bottom part illustrates the sample selection preference of UASPL from easy to hard\.Input:Training data
\{xi,yi\}i=1n\\\{x\_\{i\},y\_\{i\}\\\}\_\{i=1\}^\{n\}
, total epochs
EXEX, inner epochs
IIOutput:Trained classifier
fθf\_\{\\theta\}
1
2Initialize model
fθf\_\{\\theta\}, optimizer, number of classes
KK, the age parameter
λ\\lambda
3The initial model was pre\-trained for 20 rounds using the traditional cross\-entropy loss function
4for*ex=1ex=1toEXEX*do
5Compute Dirichlet parameters
αi\\alpha\_\{i\}and total evidence
Si=∑j=1KαijS\_\{i\}=\\sum\_\{j=1\}^\{K\}\\alpha\_\{ij\}for
i=1\.\.ni=1\.\.n
6end for
7;
8Compute uncertainty
ui=K/Siu\_\{i\}=K/S\_\{i\}, predicted probability
μij=αij/Si\\mu\_\{ij\}=\\alpha\_\{ij\}/S\_\{i\}, and correctness indicator
ci=𝟏\[argmaxjμij==yi\]c\_\{i\}=\\mathbf\{1\}\[\\arg\\max\_\{j\}\\mu\_\{ij\}==y\_\{i\}\];
9Compute coefficient
coeffi=\(1−ci\)\(1−ui\)\+ciui\\text\{coeff\}\_\{i\}=\(1\-c\_\{i\}\)\(1\-u\_\{i\}\)\+c\_\{i\}u\_\{i\};
10Compute sample\-wise loss
ℒtotal\(i\)=ℒEMSE\(i\)\+coeffiℒKL\(i\)\\mathcal\{L\}\_\{\\text\{total\}\}^\{\(i\)\}=\\mathcal\{L\}\_\{\\text\{EMSE\}\}^\{\(i\)\}\+\\text\{coeff\}\_\{i\}\\mathcal\{L\}\_\{\\text\{KL\}\}^\{\(i\)\};
11Sort samples by
ℒtotal\(i\)\\mathcal\{L\}\_\{\\text\{total\}\}^\{\(i\)\}in ascending order;
12Select a subset of samples
\(xs,ys\)\(x\_\{s\},y\_\{s\}\)with the smallest
ℒtotal\(i\)\\mathcal\{L\}\_\{\\text\{total\}\}^\{\(i\)\}as
𝒟s\\mathcal\{D\}\_\{s\}based on
λ\\lambda;
13
14for*inner=1inner=1toII*do
15Compute
αi\\alpha\_\{i\},
SiS\_\{i\},
uiu\_\{i\},
μij\\mu\_\{ij\},
cic\_\{i\},
coeffi\\text\{coeff\}\_\{i\}for samples in
𝒟s\\mathcal\{D\}\_\{s\}
16end for
17;
18Compute the loss
ℒtotal\(i\)\\mathcal\{L\}\_\{\\text\{total\}\}^\{\(i\)\}for all selected samples;
19Backpropagate and update model parameters
θ\\theta;
20if*ℒ<ϵ\\mathcal\{L\}<\\epsilon*then
21break
22end if
Update the age parameter
λ\\lambda
Algorithm 1Uncertainty\-Aware Self\-Paced Learning \(UASPL\)
## 4Experiments
In this section, comprehensive experiments are conducted to evaluate UASPL from multiple perspectives, including classification performance, interpretability, generality, and additional validation experiments\. In addition, due to space limitations, part of the experimental results and analyses are provided in the Supplementary Material\.
### 4\.1Experimental Setting
This subsection describes the datasets, baselines and some additional details to facilitate understanding and reproduction\.
Dataset\.We evaluate our method on both tabular and image datasets\. The tabular datasets include 25 datasets from the UCI repository, consisting of 10 balanced and 15 imbalanced datasets, with their basic information provided in Table A\.1 of the Supplementary Material\. The image datasets include four widely adopted classification benchmarks: CIFAR\-10, FashionMNIST, MNIST, and SVHN\.
Baselines\.A total of fifteen baseline methods are included for comparison\. These methods comprise conventional training \(1\), traditional SPL variants \(2\)–\(4\), SPL methods that incorporate additional information \(5\)–\(8\), and representative sample\-reweighting methods \(9\)–\(10\)\. Moreover, as directly comparable SPL methods based on representative network\-output\-based and Bayesian uncertainty criteria are limited in the existing literature, we construct five adapted SPL baselines \(11\)–\(15\) by incorporating these uncertainty criteria into the SPL framework\. The compared methods are briefly described as follows\.
\(1\)Direct: All samples are used directly for training without selection\.
\(2\)SPL\[[16](https://arxiv.org/html/2607.06638#bib.bib1)\]: Samples are selected based on the training loss in a traditional self\-paced learning framework with hard regularization term\.
\(3\)SPL\_linear\[[11](https://arxiv.org/html/2607.06638#bib.bib5)\]: Samples are selected based on the training loss in a traditional self\-paced learning framework with linear regularization term\.
\(4\)SPL\_mixture\[[39](https://arxiv.org/html/2607.06638#bib.bib6)\]: Samples are selected based on the training loss in a traditional self\-paced learning framework with mixture regularization term\.
\(5\)CLU1\[[36](https://arxiv.org/html/2607.06638#bib.bib14)\]: Samples are selected based on evidential uncertainty, where the basic belief assignment \(BBA\) is modeled by EKNN\.
\(6\)CLU2\[[36](https://arxiv.org/html/2607.06638#bib.bib14)\]: Samples are selected based on evidential uncertainty, with BBA modeled by ECM\.
\(7\)WSPLBF1\[[36](https://arxiv.org/html/2607.06638#bib.bib14)\]: Sample selection is guided by both evidential uncertainty and training loss, with BBA modeled by EKNN\.
\(8\)WSPLBF2\[[36](https://arxiv.org/html/2607.06638#bib.bib14)\]: Sample selection is guided by both evidential uncertainty and training loss, with BBA modeled by ECM\.
\(9\)MW\-Net\[[27](https://arxiv.org/html/2607.06638#bib.bib31)\]: A representative sample\-reweighting method that adaptively learns an explicit weighting function directly from unbiased meta\-data\.
\(10\)active\_bias\[[2](https://arxiv.org/html/2607.06638#bib.bib32)\]: A representative sample\-weighting method that emphasizes samples with high predictive variance during training\.
\(11\)SPL\_conf\[[10](https://arxiv.org/html/2607.06638#bib.bib35)\]: An adapted SPL baseline that uses confidence scores from the model for sample selection\.
\(12\)SPL\_marg\[[5](https://arxiv.org/html/2607.06638#bib.bib36)\]: An adapted SPL baseline that uses margin\-based difficulty scores from the model for sample selection\.
\(13\)MC\_MI\[[6](https://arxiv.org/html/2607.06638#bib.bib33),[7](https://arxiv.org/html/2607.06638#bib.bib34)\]: An adapted SPL baseline that uses mutual information estimated via MC dropout as an uncertainty score for sample selection\.
\(14\)MC\_pBALD\[[6](https://arxiv.org/html/2607.06638#bib.bib33),[15](https://arxiv.org/html/2607.06638#bib.bib38)\]: An adapted SPL baseline that uses power\-scaled mutual information estimated via MC dropout as an uncertainty score for sample selection\.
\(15\)MC\_BalEnt\[[6](https://arxiv.org/html/2607.06638#bib.bib33),[31](https://arxiv.org/html/2607.06638#bib.bib37)\]: An adapted SPL baseline that uses balanced entropy estimated via MC dropout as an uncertainty score for sample selection\.
Additional Details\.All methods adopt the same multilayer perceptron backbone on the UCI datasets, which is pretrained for 20 epochs using cross\-entropy loss\[[21](https://arxiv.org/html/2607.06638#bib.bib42)\]\. Regarding data partitioning, 50% of the samples in each dataset are randomly assigned to the test set\. For all methods exceptMW\-Net, the remaining 50% serve as the training set\. ForMW\-Net, the same test set is retained, while the remaining half is further split into training and meta\-data sets at a 4:1 ratio, resulting in an overall split of 50% test set, 40% training set, and 10% meta\-data set\[[27](https://arxiv.org/html/2607.06638#bib.bib31),[40](https://arxiv.org/html/2607.06638#bib.bib41),[28](https://arxiv.org/html/2607.06638#bib.bib40)\]\. To mitigate the impact of random partitioning, 50 Monte Carlo runs are performed on each dataset, and the average results are reported\. Furthermore,CLU1,CLU2,WSPLBF1, andWSPLBF2\[[36](https://arxiv.org/html/2607.06638#bib.bib14)\]consider both sample difficulty and class proportion during sample selection, i\.e\., samples are selected in the same proportion for each class, whereas the other methods focus solely on sample difficulty\. For SPL\-related methods, the training process is divided into six stages: the first stage uses 25% of the training samples, and each subsequent stage adds an additional 15%\.
### 4\.2Classification Performance
Table[2](https://arxiv.org/html/2607.06638#S4.T2)presents the overall accuracy comparisons in terms of both Accuracy Mean and Accuracy Std\. For each metric, the average value, average rank, and best count across datasets are reported\. Detailed accuracy results on datasets are provided in the Supplementary Material \(Tables B\.2 and B\.3\)\. The overall comparisons for F1\-score, Precision, and Recall are given in the Supplementary Material \(Tables B\.4–B\.12\), while the main numerical results are summarized below\.
Table 2:Comparison of all methods on datasets in terms of accuracy\.MethodAccuracy MeanAccuracy Std\.Avg\. ValueAvg\. RankBest CountAvg\. ValueAvg\. RankBest CountDirect0\.79865\.8800\.04617\.902SPL0\.81434\.6000\.04058\.080SPL\_linear0\.82553\.1640\.02967\.241SPL\_mixture0\.81794\.6000\.04458\.481CLU10\.79616\.9600\.05558\.821CLU20\.78626\.4800\.06069\.481WSPLBF10\.80875\.2810\.05228\.721WSPLBF20\.80415\.2400\.04558\.802MW\-Net0\.81234\.9610\.03046\.941active\_bias0\.77757\.8800\.058612\.600SPL\_conf0\.77917\.4810\.07548\.542SPL\_marg0\.78086\.9210\.07379\.140MC\_MI0\.75278\.2810\.07399\.402MC\_pBALD0\.74448\.4420\.07279\.644MC\_BalEnt0\.74328\.1260\.06216\.605UASPL0\.82851\.76130\.02715\.628
Note:For each dataset, “Accuracy Mean” and “Accuracy Std\.” are computed from 50 independent random trials\. The sub\-items under each metric denote: \(i\) the average value of this metric across datasets, \(ii\) the average rank of this metric across datasets, and \(iii\) the win count \(number of datasets\) where the method achieves the best value of this metric\. Bold and underlined values indicate the best and second\-best overall results, respectively\.
In terms of accuracy, as shown in Table[2](https://arxiv.org/html/2607.06638#S4.T2), UASPL achieves the highest average accuracy \(0\.8285\), the best average rank \(1\.76\), and the largest number of wins \(13 out of 25 datasets\)\. Its average standard deviation \(0\.0271\) is also the smallest among all methods, indicating superior stability\. For F1\-score \(Tables B\.4–B\.6 in the Supplementary Material\), UASPL ties for the highest mean value \(0\.7720\), while attaining the best average rank \(4\.88\) and the most wins \(12\)\. In terms of Precision \(Tables B\.7–B\.9\), UASPL ranks first in mean value \(0\.7884\), average rank \(3\.76\), and win count \(14\)\. For Recall \(Tables B\.10–B\.12\), UASPL again leads in mean value \(0\.7760\), average rank \(4\.52\), and win count \(13\), and also achieves the smallest average standard deviation \(0\.0336\)\. In summary, UASPL achieves the strongest performance in terms of accuracy, with the highest mean accuracy and the lowest average standard deviation across the reported summary statistics\. Moreover, it also obtains highly competitive results on F1\-score, Precision, and Recall, which further demonstrates the effectiveness of UASPL\.
\(a\)Transfusion
\(b\)Wine
\(c\)Pop
\(d\)Breast\_Cancer\_Diagnostic
\(e\)Heart
\(f\)Ionosphere
Figure 3:Comparison of mean relative loss variation across rounds for UASPL and representative baselines on six datasets\. For readability, the corresponding comparison with Baselines 11–15 is reported separately in Figure B\.1 of the Supplementary Material\.Additionally, as illustrated in the Fig\.[3](https://arxiv.org/html/2607.06638#S4.F3), the mean relative loss variation of representative baselines fluctuates drastically, with nearly all values being negative, while UASPL exhibits a slightly overall declining trend with only minor occasional fluctuations, and can achieve positive values in the initial rounds across several datasets\. This indicates that before the introduction of highly challenging samples, the model’s learning for the samples selected by UASPL in the first round is relatively stable \(the loss does not exhibit significant fluctuations\), indicating that compared with other methods, the simple samples selected by UASPL are more conducive to the model’s learning in subsequent stages\.
### 4\.3Interpretability Analysis
Given the theoretical principle of UASPL provided in Subsection[3\.2](https://arxiv.org/html/2607.06638#S3.SS2), a further analysis is conducted on the interpretability of UASPL in this subsection\.
To analyze the sample selection strategy of UASPL, Fig\.[4](https://arxiv.org/html/2607.06638#S4.F4)visualizes the characteristics of the sample distribution across six rounds of sample selection, where samples are ranked by ascending loss values calculated via Eq\.[7](https://arxiv.org/html/2607.06638#S3.E7)\. The scatter plot in the figure marks correctly predicted samples in green and incorrectly predicted ones in red, clearly reflecting that among samples ordered by ascending loss, correctly predicted samples are prioritized over incorrectly predicted ones in the sample selection of UASPL\. The four colored bars correspond respectively to the four progressively increasing difficulty intervals mentioned in Subsection[3\.2](https://arxiv.org/html/2607.06638#S3.SS2)regarding the sample selection preference: all samples ranked by ascending loss are split into two major parts according to the index of the first incorrectly predicted sample, and each part is then bisected again at its median sample, thereby forming four intervals\. The bold numerical labels on these bars display the mean uncertainty of each interval\.
\(a\)Round 1
\(b\)Round 2
\(c\)Round 3
\(d\)Round 4
\(e\)Round 5
\(f\)Round 6
Figure 4:Prediction results and uncertainty of UASPL with loss ascending sorting on the Transfusion dataset\.Obviously, for correctly predicted samples, those with lower uncertainty are prioritized over those with higher uncertainty\. In contrast, for incorrectly predicted samples, those with higher uncertainty are granted higher priority than their lower\-uncertainty counterparts\. This sample selection preference enables a gradual transition from reliably simple samples to complex and challenging samples\. Therefore, the sample selection of UASPL is highly clear and interpretable\.
### 4\.4Generality Evaluation
In the aforementioned experiments, UASPL employs the hard regularizer for comparison with the baseline methods\. To evaluate the generality of UASPL across different self\-paced learning variants, this subsection replaces the hard regularizer in UASPL with the linear regularizer\[[11](https://arxiv.org/html/2607.06638#bib.bib5)\]and the mixture regularizer\[[39](https://arxiv.org/html/2607.06638#bib.bib6)\], yielding two modified variants denoted asUASPL\_linearandUASPL\_mixture, respectively\. Due to space limitations, additional generality evaluation results, including the illustrative analysis of training behavior and sample\-selection characteristics forUASPL\_linearandUASPL\_mixture, together with the detailed classification results on datasets, are provided in Appendix C of the Supplementary Material\.
Table 3:Comparison of all methods on datasets in terms of Accuracy for the UASPL\_linear generalization experiment\.MethodAccuracy MeanAccuracy Std\.Avg\. ValueAvg\. RankBest CountAvg\. ValueAvg\. RankBest CountDirect0\.79869\.7200\.04617\.282SPL0\.81436\.7610\.04057\.440SPL\_linear0\.82554\.3610\.02966\.641CLU10\.79619\.5600\.05557\.962CLU20\.786210\.2400\.06068\.761WSPLBF10\.80877\.4000\.05228\.121WSPLBF20\.80417\.7210\.04558\.163MW\-Net0\.81237\.1210\.03046\.402active\_bias0\.777510\.8400\.058611\.680SPL\_conf0\.77919\.7210\.07547\.922SPL\_marg0\.78089\.4010\.07378\.440MC\_MI0\.75277\.3610\.07398\.682MC\_pBALD0\.74448\.3620\.07278\.884MC\_BalEnt0\.74325\.9670\.06216\.045UASPL\_linear0\.82844\.28130\.03115\.684Table 4:Comparison of all methods on datasets in terms of Accuracy for the UASPL\_mixture generalization experiment\.MethodAccuracy MeanAccuracy Std\.Avg\. ValueAvg\. RankBest CountAvg\. ValueAvg\. RankBest CountDirect0\.79869\.5600\.04617\.122SPL0\.81436\.5210\.04057\.320SPL\_mixture0\.81795\.7600\.04457\.840CLU10\.79619\.4000\.05557\.882CLU20\.786210\.2400\.06068\.641WSPLBF10\.80877\.0010\.05227\.921WSPLBF20\.80417\.5620\.04558\.003MW\-Net0\.81236\.8820\.03046\.162active\_bias0\.777510\.6800\.058611\.600SPL\_conf0\.77919\.7610\.07547\.881SPL\_marg0\.78089\.4410\.07378\.320MC\_MI0\.75277\.2810\.07398\.642MC\_pBALD0\.74448\.3220\.07278\.963MC\_BalEnt0\.74326\.0060\.06216\.085UASPL\_mixture0\.82854\.40120\.02905\.927The corresponding classification results on the datasets are reported in Table[3](https://arxiv.org/html/2607.06638#S4.T3)\(linear regularizer\) and Table[4](https://arxiv.org/html/2607.06638#S4.T4)\(mixture regularizer\)\. As shown in both tables,UASPL\_linearandUASPL\_mixtureachieve the highest average accuracy \(0\.8284 and 0\.8285, respectively\) and the best \(lowest\) average rank \(4\.28 and 4\.40\) among all compared methods\. In terms of best count \(the number of datasets on which a method achieves the highest accuracy\),UASPL\_linearobtains 13 best results \(the highest\), andUASPL\_mixtureobtains 12 best results \(also the highest\)\. For the standard deviation of accuracy,UASPL\_mixtureachieves the lowest average value \(0\.0290\) and the best average rank \(5\.92\), whileUASPL\_linearranks second in both metrics\. These results demonstrate that the proposed uncertainty\-aware sample selection mechanism remains effective under different self\-paced regularization forms \(hard, linear, and mixture\), confirming the strong generality of UASPL across various SPL variants\.
### 4\.5Additional Experimental Validation
To further validate the effectiveness of UASPL, we conduct additional experiments covering five aspects: ablation studies, robustness to label noise, sensitivity to pretraining, statistical significance testing, and evaluation on image benchmarks\.
Due to page limitations, the main text focuses on the ablation studies and the evaluation on image benchmarks\. The other three experiments are reported in detail in the Supplementary Material and are briefly summarized here\. Specifically, Appendix E presents the robustness experiments on the datasets, showing that UASPL remains competitive under both uniform and asymmetric label noise, with UASPL\_linear exhibiting particularly stable performance under severe corruption\. Appendix F reports the pretraining sensitivity analysis, indicating that the adopted pretraining duration lies within a relatively stable performance region\. Appendix G provides paired Wilcoxon signed\-rank tests across Accuracy, F1, Precision, and Recall, showing that UASPL achieves statistically significant improvements over many baseline methods\.
#### 4\.5\.1Ablation Studies
We conduct three ablation settings to analyze the effectiveness of the main designs in UASPL\. The first setting removes the evidential modeling of class probabilities, so that UASPL reduces to the corresponding traditional SPL baselines with point\-estimate predictions\. The other two settings retain the evidential modeling of class probabilities but replace the proposed uncertainty\-dependent KL coefficient with two alternative KL\-weighting schemes: \(i\) a fixed coefficient \(β=1\\beta=1\), which removes the uncertainty\-dependent weighting and uses a constant KL weight throughout training; and \(ii\) an annealed coefficient \(βt=\(t\+1\)/T\\beta\_\{t\}=\(t\+1\)/T\), which removes the uncertainty\-dependent weighting and follows a standard linear schedule commonly used in evidential deep learning, whereTTdenotes the total number of self\-paced learning rounds andttis the current round index starting from 0\. All three settings are evaluated under the hard, linear, and mixture regularizers\.
Table 5:Ablation results of UASPL on datasets in terms of average accuracy\.RegularizerVariantAvg\. Acc\.Δ\\Deltavs\. FullRankHardSPL baseline0\.8143\-0\.01424HardUASPL \(β=1\\beta=1\)0\.8228\-0\.00573HardUASPL \(βt\\beta\_\{t\}\)0\.8253\-0\.00322HardFull UASPL0\.828501LinearSPL baseline0\.8255\-0\.00294LinearUASPL \(β=1\\beta=1\)0\.8267\-0\.00173LinearUASPL \(βt\\beta\_\{t\}\)0\.8272\-0\.00122LinearFull UASPL0\.828401MixtureSPL baseline0\.8179\-0\.01074MixtureUASPL \(β=1\\beta=1\)0\.8246\-0\.00403MixtureUASPL \(βt\\beta\_\{t\}\)0\.8256\-0\.00302MixtureFull UASPL0\.828501The ablation results are summarized in Table[5](https://arxiv.org/html/2607.06638#S4.T5), and the corresponding detailed accuracy results on datasets are provided in Table D\.17 of the Supplementary Material\. Across the hard, linear, and mixture self\-paced regularizers, the full UASPL achieves the highest average accuracy\. Compared with the corresponding traditional SPL baselines, the variants with evidential modeling of class probabilities achieve higher average accuracy, suggesting that modeling class probabilities with a Dirichlet distribution is beneficial for self\-paced learning\. Furthermore, the full UASPL outperforms the fixed\- and annealed\-KL variants under all three regularizers, indicating that the proposed uncertainty\-dependent KL coefficient is more effective than predefined KL\-weighting schemes\. These results support the effectiveness of both the evidential modeling of class probabilities and the uncertainty\-dependent KL regularization in UASPL\.
#### 4\.5\.2Evaluation on Image Benchmarks
To further assess the applicability of UASPL beyond tabular datasets, additional experiments are conducted on four widely used image classification benchmarks, namely CIFAR\-10, FashionMNIST, MNIST, and SVHN\.
For the image datasets, deep backbone networks such as ResNet18 are adopted, and all reported methods are evaluated under matched experimental settings\. For CLU and WSPLBF, we report only their EKNN\-based variants, i\.e\., CLU1 and WSPLBF1, because preliminary results show that their ECM\-based variants, i\.e\., CLU2 and WSPLBF2, exhibit similar performance trends but require substantially higher computational cost under deep image backbones\. The backbone network is pretrained for 5 epochs using cross\-entropy loss, and 5 Monte Carlo runs are conducted for each dataset\. In addition, following\[[24](https://arxiv.org/html/2607.06638#bib.bib39)\], a correct\-evidence regularization term is incorporated into Eq\. \([7](https://arxiv.org/html/2607.06638#S3.E7)\) in the image experiments to address the optimization issues caused by low\-evidence samples under deep architectures\. Moreover, for image classification with deep backbones, we adopt a stage\-dependent hybrid score for sample selection to better accommodate the training dynamics of deep networks:
scorei=\(1−rt\)Norm\(ℒtotal\(i\)\)\+rtNorm\(1−ui\),\\text\{score\}\_\{i\}=\(1\-r\_\{t\}\)\\,\\mathrm\{Norm\}\(\\mathcal\{L\}\_\{\\text\{total\}\}^\{\(i\)\}\)\+r\_\{t\}\\,\\mathrm\{Norm\}\(1\-u\_\{i\}\),\(18\)wherert=\(t\+1\)/Tr\_\{t\}=\(t\+1\)/Tdenotes the stage progress ratio, withTTbeing the total number of self\-paced learning rounds andttthe current round index starting from 0\. Here,ℒtotal\(i\)\\mathcal\{L\}\_\{\\text\{total\}\}^\{\(i\)\}reflects the current overall optimization status of theii\-th sample, whileuiu\_\{i\}characterizes whether the sample still lacks sufficient evidence and therefore retains further room for evidence updating\. Accordingly, the early stages mainly favor samples with smaller total losses, i\.e\., samples that can already be handled relatively well by the current model\. Asrtr\_\{t\}increases, the selection criterion gradually places more emphasis on the evidence\-related term, so that the model does not remain focused only on samples that have already become highly certain, but instead pays more attention to samples with relatively small losses yet still insufficient evidence\. In this way, the selection preference gradually shifts from samples that are currently easy to optimize to samples that are learnable and still retain room for further evidence updating\.
Table 6:Accuracy comparison across the four image datasets\.MethodCIFAR10FashionMNISTMNISTSVHNDirect0\.9398±\\pm0\.00110\.9470±\\pm0\.00090\.9957±\\pm0\.00030\.9602±\\pm0\.0014SPL0\.9040±\\pm0\.00310\.9340±\\pm0\.00140\.9944±\\pm0\.00090\.9539±\\pm0\.0022SPL\_linear0\.9028±\\pm0\.00400\.9324±\\pm0\.00440\.9945±\\pm0\.00060\.9562±\\pm0\.0024SPL\_mixture0\.9001±\\pm0\.00340\.9316±\\pm0\.00260\.9910±\\pm0\.00180\.9513±\\pm0\.0032CLU10\.8165±\\pm0\.01110\.8297±\\pm0\.12420\.9866±\\pm0\.00360\.8953±\\pm0\.0188WSPLBF10\.9197±\\pm0\.00210\.9371±\\pm0\.00140\.9953±\\pm0\.00040\.9610±\\pm0\.0011MW\-Net0\.9421±\\pm0\.00250\.9487±\\pm0\.00060\.9961±\\pm0\.00020\.9626±\\pm0\.0015active\_bias0\.9397±\\pm0\.00230\.9465±\\pm0\.00130\.9957±\\pm0\.00040\.9622±\\pm0\.0015SPL\_conf0\.9140±\\pm0\.00190\.9401±\\pm0\.00200\.9949±\\pm0\.00040\.9544±\\pm0\.0018SPL\_marg0\.9162±\\pm0\.00280\.9407±\\pm0\.00110\.9949±\\pm0\.00050\.9554±\\pm0\.0025MC\_MI0\.9059±\\pm0\.00340\.9316±\\pm0\.00130\.9947±\\pm0\.00050\.9556±\\pm0\.0010MC\_pBALD0\.9141±\\pm0\.00330\.9363±\\pm0\.00200\.9946±\\pm0\.00080\.9612±\\pm0\.0013MC\_BalEnt0\.9011±\\pm0\.00260\.9350±\\pm0\.00150\.9959±\\pm0\.00030\.9598±\\pm0\.0022SPL\_SPUP0\.9039±\\pm0\.00240\.9359±\\pm0\.00130\.9944±\\pm0\.00090\.9551±\\pm0\.0031UASPL0\.9346±\\pm0\.00100\.9491±\\pm0\.00100\.9963±\\pm0\.00040\.9653±\\pm0\.0006
Due to space limitations, the main text reports only the Accuracy results on the four image datasets in Table[6](https://arxiv.org/html/2607.06638#S4.T6)\. The complete results for Accuracy, F1, Precision, and Recall on all compared methods are reported in Tables H\.24–H\.27 of the Supplementary Material\.
As shown in Table[6](https://arxiv.org/html/2607.06638#S4.T6), UASPL remains highly competitive across the four image benchmarks\. On CIFAR\-10, UASPL does not achieve the highest mean Accuracy, but it yields the smallest standard deviation, indicating stronger stability across repeated runs\. On FashionMNIST, UASPL achieves the best mean Accuracy while maintaining a low standard deviation\. On MNIST, where most methods already approach saturated performance, UASPL still attains the highest mean Accuracy\. On SVHN, UASPL achieves both the best mean Accuracy and the smallest standard deviation\. It is worth noting that MW\-Net is a strong meta\-learning\-based reweighting baseline, but it maintains an additional weighting network and updates it using a small unbiased meta\-data set, which usually makes it more time\-consuming than non\-meta\-learning baselines under deep image backbones\. The full four\-metric results in Appendix H also show that UASPL maintains competitive mean performance while achieving low variance across the image benchmarks\.
## 5Conclusion
This paper focuses on the issue that traditional self\-paced learning methods mostly rely on the loss values to measure sample difficulty, whereas samples with small losses are not necessarily reliably simple samples for the model\. To this end, we propose an Uncertainty\-Aware Self\-Paced Learning \(UASPL\) framework based on evidential neural networks, which integrates model\-generated evidential uncertainty together with the label\-fitting loss into the self\-paced learning objective\. Furthermore, UASPL incorporates an interpretable sample selection preference and demonstrates strong generality when embedded into different SPL variants\. Extensive experiments verify that UASPL achieves superior classification performance, interpretability, and generalization compared with multiple baseline methods\.
Moreover, UASPL provides promising insights for studies on self\-paced learning by showing how model\-generated predictive reliability can be incorporated into sample selection strategies beyond loss\-only criteria and externally introduced auxiliary information\. As UASPL mainly focuses on reliability\-aware sample\-difficulty estimation in SPL, future work may proceed in the following directions: \(1\) investigating a tailored self\-paced regularizer to more faithfully reflect sample importance by considering predictive reliability; \(2\) establishing a more comprehensive sample selection strategy that jointly takes sample diversity and uncertainty estimation into account; \(3\) developing an adaptive dynamic scheduling mechanism to further enhance the flexibility of UASPL in the sample selection process\.
## Acknowledgment
The work is partially supported by National Natural Science Foundation of China \(Grant No\. 62303382, 62403388\), and by Qin Chuangyuan high\-level innovation and entrepreneurship talent program of Shaanxi \(Grant No\.QCYRCXM\-2023\-108\), and by Guangdong Basic and Applied Basic Research Foundation \(Grant No\. 2023A1515110784\), Shaanxi Fundamental Science Research Project for Mathematics and Physics \(Grant No\. 23JSQ034\)\.
## References
- \[1\]Y\. Bengio, J\. Louradour, R\. Collobert, and J\. Weston\(2009\)Curriculum learning\.InProceedings of the 26th Annual International Conference on Machine Learning,pp\. 41–48\.External Links:[Document](https://dx.doi.org/10.1145/1553374.1553380)Cited by:[§1](https://arxiv.org/html/2607.06638#S1.p1.1)\.
- \[2\]H\. Chang, E\. Learned\-Miller, and A\. McCallum\(2017\)Active bias: training more accurate neural networks by emphasizing high variance samples\.InAdvances in Neural Information Processing Systems,Vol\.30,pp\. 1002–1012\.Cited by:[§2\.1](https://arxiv.org/html/2607.06638#S2.SS1.p1.1),[§4\.1](https://arxiv.org/html/2607.06638#S4.SS1.p13.1)\.
- \[3\]M\. Chen, J\. Gao, and C\. Xu\(2025\)Revisiting essential and nonessential settings of evidential deep learning\.IEEE Transactions on Pattern Analysis and Machine Intelligence47\(10\),pp\. 8658–8673\.External Links:ISSN 1939\-3539,[Document](https://dx.doi.org/10.1109/tpami.2025.3583410)Cited by:[§2\.1](https://arxiv.org/html/2607.06638#S2.SS1.p2.8)\.
- \[4\]Y\. Dong, N\. Jiang, R\. Zhou, C\. Zhu, L\. Cao, T\. Liu, Y\. Xu, and X\. Li\(2024\)A novel multi\-criteria conflict evidence combination method and its application to pattern recognition\.Information Fusion108,pp\. 102346\.External Links:ISSN 1566\-2535,[Document](https://dx.doi.org/10.1016/j.inffus.2024.102346)Cited by:[§2\.1](https://arxiv.org/html/2607.06638#S2.SS1.p2.8)\.
- \[5\]Q\. Feng, Y\. Liu, and H\. Schuetze\(2025\)Your pretrained model tells the difficulty itself: a self\-adaptive curriculum learning paradigm for natural language understanding\.InProceedings of the 63rd Annual Meeting of the Association for Computational Linguistics \(Volume 4: Student Research Workshop\),Vienna, Austria,pp\. 222–239\.External Links:[Document](https://dx.doi.org/10.18653/v1/2025.acl-srw.15)Cited by:[§2\.1](https://arxiv.org/html/2607.06638#S2.SS1.p1.1),[§4\.1](https://arxiv.org/html/2607.06638#S4.SS1.p15.1)\.
- \[6\]Y\. Gal and Z\. Ghahramani\(2016\)Dropout as a bayesian approximation: representing model uncertainty in deep learning\.InProceedings of The 33rd International Conference on Machine Learning,Proceedings of Machine Learning Research, Vol\.48,New York, New York, USA,pp\. 1050–1059\.Cited by:[§2\.1](https://arxiv.org/html/2607.06638#S2.SS1.p1.1),[§4\.1](https://arxiv.org/html/2607.06638#S4.SS1.p16.1),[§4\.1](https://arxiv.org/html/2607.06638#S4.SS1.p17.1),[§4\.1](https://arxiv.org/html/2607.06638#S4.SS1.p18.1)\.
- \[7\]Y\. Gal, R\. Islam, and Z\. Ghahramani\(2017\)Deep Bayesian active learning with image data\.InProceedings of the 34th International Conference on Machine Learning,Proceedings of Machine Learning Research, Vol\.70,pp\. 1183–1192\.Cited by:[§2\.1](https://arxiv.org/html/2607.06638#S2.SS1.p1.1),[§4\.1](https://arxiv.org/html/2607.06638#S4.SS1.p16.1)\.
- \[8\]J\. Gao, M\. Chen, L\. Xiang, and C\. Xu\(2026\)A comprehensive survey on evidential deep learning and its applications\.IEEE Transactions on Pattern Analysis and Machine Intelligence48\(3\),pp\. 2118–2138\.External Links:ISSN 1939\-3539,[Document](https://dx.doi.org/10.1109/tpami.2025.3625258)Cited by:[§2\.1](https://arxiv.org/html/2607.06638#S2.SS1.p2.8)\.
- \[9\]L\. GUO\(2018\)Self\-paced learning with statistics uncertainty prior\.IEICE Transactions on Information and SystemsE101\.D\(3\),pp\. 812–816\.External Links:ISSN 1745\-1361,[Document](https://dx.doi.org/10.1587/transinf.2017edl8169)Cited by:[§1](https://arxiv.org/html/2607.06638#S1.p1.1),[§2\.2](https://arxiv.org/html/2607.06638#S2.SS2.p3.1)\.
- \[10\]M\. Islam, L\. Seenivasan, S\. P\. Sharan, V\. K\. Viekash, B\. Gupta, B\. Glocker, and H\. Ren\(2023\)Paced\-curriculum distillation with prediction and label uncertainty for image segmentation\.International Journal of Computer Assisted Radiology and Surgery18\(10\),pp\. 1875–1883\.External Links:ISSN 1861\-6429,[Document](https://dx.doi.org/10.1007/s11548-023-02847-9)Cited by:[§2\.1](https://arxiv.org/html/2607.06638#S2.SS1.p1.1),[§4\.1](https://arxiv.org/html/2607.06638#S4.SS1.p14.1)\.
- \[11\]L\. Jiang, D\. Meng, T\. Mitamura, and A\. G\. Hauptmann\(2014\)Easy samples first: self\-paced reranking for zero\-example multimedia search\.InProceedings of the 22nd ACM international conference on Multimedia,MM ’14,pp\. 547–556\.External Links:[Document](https://dx.doi.org/10.1145/2647868.2654918)Cited by:[§1](https://arxiv.org/html/2607.06638#S1.p1.1),[§2\.2](https://arxiv.org/html/2607.06638#S2.SS2.p1.7),[§2\.2](https://arxiv.org/html/2607.06638#S2.SS2.p2.1),[§4\.1](https://arxiv.org/html/2607.06638#S4.SS1.p6.1),[§4\.4](https://arxiv.org/html/2607.06638#S4.SS4.p1.1)\.
- \[12\]L\. Jiang, D\. Meng, Q\. Zhao, S\. Shan, and A\. Hauptmann\(2015\)Self\-paced curriculum learning\.InProceedings of the AAAI Conference on Artificial Intelligence,Vol\.29,pp\. 2694–2700\.External Links:[Document](https://dx.doi.org/10.1609/aaai.v29i1.9608)Cited by:[§1](https://arxiv.org/html/2607.06638#S1.p1.1)\.
- \[13\]B\. Kang, S\. Du, D\. Liang, F\. Wu, and X\. Li\(2024\)Fine\-grained recognition via submodular optimization regulated progressive training\.Pattern Recognition156,pp\. 110849\.External Links:ISSN 0031\-3203,[Document](https://dx.doi.org/10.1016/j.patcog.2024.110849)Cited by:[§2\.2](https://arxiv.org/html/2607.06638#S2.SS2.p1.8)\.
- \[14\]Z\. Kang, H\. Liu, J\. Li, X\. Zhu, and L\. Tian\(2023\)Self\-paced principal component analysis\.Pattern Recognition142,pp\. 109692\.External Links:ISSN 0031\-3203,[Document](https://dx.doi.org/10.1016/j.patcog.2023.109692)Cited by:[§2\.2](https://arxiv.org/html/2607.06638#S2.SS2.p1.8)\.
- \[15\]K\. Kim, D\. Park, K\. I\. Kim, and S\. Y\. Chun\(2021\)Task\-aware variational adversarial active learning\.InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition \(CVPR\),pp\. 8166–8175\.Cited by:[§2\.1](https://arxiv.org/html/2607.06638#S2.SS1.p1.1),[§4\.1](https://arxiv.org/html/2607.06638#S4.SS1.p17.1)\.
- \[16\]M\. P\. Kumar, B\. Packer, and D\. Koller\(2010\)Self\-paced learning for latent variable models\.InAdvances in Neural Information Processing Systems,Vol\.23,pp\. 1189–1197\.Cited by:[§1](https://arxiv.org/html/2607.06638#S1.p1.1),[§2\.2](https://arxiv.org/html/2607.06638#S2.SS2.p1.7),[§2\.2](https://arxiv.org/html/2607.06638#S2.SS2.p1.8),[§4\.1](https://arxiv.org/html/2607.06638#S4.SS1.p5.1)\.
- \[17\]C\. Li, F\. Wei, J\. Yan, X\. Zhang, Q\. Liu, and H\. Zha\(2018\)A self\-paced regularization framework for multilabel learning\.IEEE Transactions on Neural Networks and Learning Systems29\(6\),pp\. 2660–2666\.External Links:ISSN 2162\-2388,[Document](https://dx.doi.org/10.1109/tnnls.2017.2697767)Cited by:[§1](https://arxiv.org/html/2607.06638#S1.p1.1),[§2\.2](https://arxiv.org/html/2607.06638#S2.SS2.p2.1)\.
- \[18\]H\. Li and M\. Gong\(2017\)Self\-paced convolutional neural networks\.InProceedings of the Twenty\-Sixth International Joint Conference on Artificial Intelligence,IJCAI\-2017,pp\. 2110–2116\.External Links:[Document](https://dx.doi.org/10.24963/ijcai.2017/293)Cited by:[§2\.2](https://arxiv.org/html/2607.06638#S2.SS2.p2.1)\.
- \[19\]H\. Li, J\. Li, Y\. Zhao, M\. Gong, Y\. Zhang, and T\. Liu\(2021\)Cost\-sensitive self\-paced learning with adaptive regularization for classification of image time series\.IEEE Journal of Selected Topics in Applied Earth Observations and Remote Sensing14,pp\. 11713–11727\.External Links:ISSN 2151\-1535,[Document](https://dx.doi.org/10.1109/jstars.2021.3127754)Cited by:[§2\.2](https://arxiv.org/html/2607.06638#S2.SS2.p2.1)\.
- \[20\]W\. Li, H\. Chen, T\. Li, J\. Wan, and B\. Sang\(2022\)Unsupervised feature selection via self\-paced learning and low\-redundant regularization\.Knowledge\-Based Systems240,pp\. 108150\.External Links:ISSN 0950\-7051,[Document](https://dx.doi.org/10.1016/j.knosys.2022.108150)Cited by:[§1](https://arxiv.org/html/2607.06638#S1.p1.1)\.
- \[21\]X\. Li, W\. Shen, and D\. Charles\(2022\)TEDL: a two\-stage evidential deep learning method for classification uncertainty quantification\.InProceedings of the Workshop on Deep Learning for Search and Recommendation \(DL4SR 2022\),CEUR Workshop Proceedings, Vol\.3317\.Cited by:[§4\.1](https://arxiv.org/html/2607.06638#S4.SS1.p19.1)\.
- \[22\]R\. Liu, T\. Xiahou, and Y\. Liu\(2025\)Multisource imprecise information calibration for reliability assessment of multistate systems: a consensus reaching perspective\.IEEE Transactions on Reliability74\(1\),pp\. 2226–2240\.External Links:ISSN 1558\-1721,[Document](https://dx.doi.org/10.1109/tr.2024.3393985)Cited by:[§3\.1](https://arxiv.org/html/2607.06638#S3.SS1.p1.1)\.
- \[23\]D\. Meng, Q\. Zhao, and L\. Jiang\(2017\)A theoretical understanding of self\-paced learning\.Information Sciences414,pp\. 319–328\.External Links:ISSN 0020\-0255,[Document](https://dx.doi.org/10.1016/j.ins.2017.05.043)Cited by:[§2\.2](https://arxiv.org/html/2607.06638#S2.SS2.p1.8)\.
- \[24\]D\. S\. Pandey, H\. Choi, and Q\. Yu\(2026\)Generalized regularized evidential deep learning models: theory and comprehensive evaluation\.IEEE Transactions on Pattern Analysis and Machine Intelligence48\(6\),pp\. 6865–6879\.External Links:ISSN 1939\-3539,[Document](https://dx.doi.org/10.1109/tpami.2026.3660699)Cited by:[§4\.5\.2](https://arxiv.org/html/2607.06638#S4.SS5.SSS2.p2.8)\.
- \[25\]M\. Poyser and T\. P\. Breckon\(2026\)DDS\-nas: dynamic data selection within neural architecture search via on\-line hard example mining applied to image classification\.Pattern Recognition169,pp\. 111948\.External Links:ISSN 0031\-3203,[Document](https://dx.doi.org/10.1016/j.patcog.2025.111948)Cited by:[§2\.2](https://arxiv.org/html/2607.06638#S2.SS2.p1.8)\.
- \[26\]M\. Sensoy, L\. Kaplan, and M\. Kandemir\(2018\)Evidential deep learning to quantify classification uncertainty\.InAdvances in Neural Information Processing Systems,Vol\.31,pp\. 3179–3189\.Cited by:[§2\.1](https://arxiv.org/html/2607.06638#S2.SS1.p2.8)\.
- \[27\]J\. Shu, Q\. Xie, L\. Yi, Q\. Zhao, S\. Zhou, Z\. Xu, and D\. Meng\(2019\)Meta\-weight\-net: learning an explicit mapping for sample weighting\.InAdvances in Neural Information Processing Systems,Vol\.32,pp\. 1917–1928\.Cited by:[§4\.1](https://arxiv.org/html/2607.06638#S4.SS1.p12.1),[§4\.1](https://arxiv.org/html/2607.06638#S4.SS1.p19.1)\.
- \[28\]J\. Shu, X\. Yuan, D\. Meng, and Z\. Xu\(2023\)CMW\-net: learning a class\-aware sample weighting mapping for robust deep learning\.IEEE Transactions on Pattern Analysis and Machine Intelligence45\(10\),pp\. 11521–11539\.External Links:[Document](https://dx.doi.org/10.1109/TPAMI.2023.3271451)Cited by:[§4\.1](https://arxiv.org/html/2607.06638#S4.SS1.p19.1)\.
- \[29\]C\. Wang, X\. Wang, J\. Zhang, L\. Zhang, X\. Bai, X\. Ning, J\. Zhou, and E\. Hancock\(2022\)Uncertainty estimation for stereo matching based on evidential deep learning\.Pattern Recognition124,pp\. 108498\.External Links:ISSN 0031\-3203,[Document](https://dx.doi.org/10.1016/j.patcog.2021.108498)Cited by:[§2\.1](https://arxiv.org/html/2607.06638#S2.SS1.p2.8)\.
- \[30\]P\. Wang, S\. Zhang, R\. Chen, J\. Chen, Y\. Fan, L\. Ning, and Y\. Cao\(2026\)Regularized evidential neural networks for deep active learning\.Pattern Recognition173,pp\. 112836\.External Links:ISSN 0031\-3203,[Document](https://dx.doi.org/10.1016/j.patcog.2025.112836)Cited by:[§2\.1](https://arxiv.org/html/2607.06638#S2.SS1.p2.8)\.
- \[31\]J\. O\. Woo\(2023\)Active learning in bayesian neural networks with balanced entropy learning principle\.InThe Eleventh International Conference on Learning Representations,Cited by:[§2\.1](https://arxiv.org/html/2607.06638#S2.SS1.p1.1),[§4\.1](https://arxiv.org/html/2607.06638#S4.SS1.p18.1)\.
- \[32\]Y\. Xu, R\. Liu, T\. Xiahou, X\. Li, and Y\. Liu\(2025\)Interactive cost\-based reliability consensus reaching models for multisource imprecise information calibration of multistate systems\.IEEE Transactions on Reliability74\(4\),pp\. 4842–4857\.External Links:ISSN 1558\-1721,[Document](https://dx.doi.org/10.1109/tr.2025.3562084)Cited by:[§3\.1](https://arxiv.org/html/2607.06638#S3.SS1.p1.1)\.
- \[33\]J\. Yan, W\. Wei, X\. Guo, C\. Dang, and J\. Liang\(2023\)A bi\-level metric learning framework via self\-paced learning weighting\.Pattern Recognition139,pp\. 109446\.External Links:ISSN 0031\-3203,[Document](https://dx.doi.org/10.1016/j.patcog.2023.109446)Cited by:[§2\.2](https://arxiv.org/html/2607.06638#S2.SS2.p1.8)\.
- \[34\]Y\. Yang, H\. Chen, J\. Hu, X\. Guo, and T\. Ma\(2024\)Advancing brain imaging analysis step\-by\-step via progressive self\-paced learning\.InMedical Image Computing and Computer Assisted Intervention – MICCAI 2024,pp\. 58–68\.External Links:ISBN 9783031721205,ISSN 1611\-3349Cited by:[§1](https://arxiv.org/html/2607.06638#S1.p1.1)\.
- \[35\]Q\. Zhang, P\. Zhang, and T\. Li\(2025\)Information fusion for large\-scale multi\-source data based on the dempster\-shafer evidence theory\.Information Fusion115,pp\. 102754\.External Links:ISSN 1566\-2535,[Document](https://dx.doi.org/10.1016/j.inffus.2024.102754)Cited by:[§2\.1](https://arxiv.org/html/2607.06638#S2.SS1.p2.8)\.
- \[36\]S\. Zhang, D\. Han, J\. Dezert, and Y\. Yang\(2024\)Weighted self\-paced learning with belief functions\.Expert Systems with Applications255,pp\. 124535\.External Links:[Document](https://dx.doi.org/10.1016/j.eswa.2024.124535)Cited by:[§1](https://arxiv.org/html/2607.06638#S1.p1.1),[§2\.2](https://arxiv.org/html/2607.06638#S2.SS2.p3.1),[§4\.1](https://arxiv.org/html/2607.06638#S4.SS1.p10.1),[§4\.1](https://arxiv.org/html/2607.06638#S4.SS1.p11.1),[§4\.1](https://arxiv.org/html/2607.06638#S4.SS1.p19.1),[§4\.1](https://arxiv.org/html/2607.06638#S4.SS1.p8.1),[§4\.1](https://arxiv.org/html/2607.06638#S4.SS1.p9.1)\.
- \[37\]Z\. Zhang, Y\. Zhang, H\. Tian, A\. Martin, Z\. Liu, and W\. Ding\(2025\)A survey of evidential clustering: definitions, methods, and applications\.Information Fusion115,pp\. 102736\.External Links:ISSN 1566\-2535,[Document](https://dx.doi.org/10.1016/j.inffus.2024.102736)Cited by:[§2\.1](https://arxiv.org/html/2607.06638#S2.SS1.p2.8)\.
- \[38\]D\. Zhao, Y\. S\. Koh, G\. Dobbie, H\. Hu, and P\. Fournier\-Viger\(2024\)Symmetric self\-paced learning for domain generalization\.Proceedings of the AAAI Conference on Artificial Intelligence38\(15\),pp\. 16961–16969\.External Links:ISSN 2159\-5399,[Document](https://dx.doi.org/10.1609/aaai.v38i15.29639)Cited by:[§1](https://arxiv.org/html/2607.06638#S1.p1.1)\.
- \[39\]Q\. Zhao, D\. Meng, L\. Jiang, Q\. Xie, Z\. Xu, and A\. Hauptmann\(2015\)Self\-paced learning for matrix factorization\.InProceedings of the AAAI Conference on Artificial Intelligence,Vol\.29,pp\. 3196–3202\.External Links:[Document](https://dx.doi.org/10.1609/aaai.v29i1.9584)Cited by:[§1](https://arxiv.org/html/2607.06638#S1.p1.1),[§2\.2](https://arxiv.org/html/2607.06638#S2.SS2.p1.7),[§2\.2](https://arxiv.org/html/2607.06638#S2.SS2.p2.1),[§4\.1](https://arxiv.org/html/2607.06638#S4.SS1.p7.1),[§4\.4](https://arxiv.org/html/2607.06638#S4.SS4.p1.1)\.
- \[40\]Q\. Zhao, J\. Shu, X\. Yuan, Z\. Liu, and D\. Meng\(2023\)A probabilistic formulation for meta\-weight\-net\.IEEE Transactions on Neural Networks and Learning Systems34\(3\),pp\. 1194–1208\.External Links:[Document](https://dx.doi.org/10.1109/TNNLS.2021.3105104)Cited by:[§4\.1](https://arxiv.org/html/2607.06638#S4.SS1.p19.1)\.Similar Articles
Robustness Meets Uncertainty: Evidential Adversarial Training for Robust Selective Classification
This paper introduces Evidential Adversarial Training (EV-AT), a method that improves the robustness-uncertainty trade-off in classifiers by combining an evidence-based loss with robust evidence alignment, achieving state-of-the-art results on selective classification benchmarks.
Evidence-Guided Neural Architecture Selection under Uncertainty for Subject-Specific Blood Glucose Forecasting
Proposes EVIDENT, a framework that integrates Bayesian training and evidence-based ranking for neural architecture selection, demonstrated on subject-specific blood glucose forecasting in type 1 diabetes, systematically selecting low-capacity models that generalize reliably.
Uncertainty-Aware LLM-Guided Policy Shaping for Sparse-Reward Reinforcement Learning
Proposes ULPS, a framework integrating a calibrated LLM into RL training with uncertainty-modulated guidance and A*-based symbolic trajectories, achieving improved success rate and sample efficiency on MiniGrid-UnlockPickup.
PUe: Biased Positive-Unlabeled Learning Enhancement by Causal Inference
This paper proposes PUe, a framework for biased positive-unlabeled learning that uses normalized propensity scores and normalized inverse probability weighting to handle selection bias, improving classification under non-uniform label distributions.
Uncertainty-Aware and Temporally Regulated Expert Advice in Reinforcement Learning for Autonomous Driving
This paper proposes an uncertainty-aware reinforcement learning framework for autonomous driving that uses expert advice guided by adaptive uncertainty thresholds and a commitment-cooldown strategy to improve safety and efficiency. Experiments in the CARLA simulator show a 5-7% success improvement over the IQN baseline.