Preprint
Article

This version is not peer-reviewed.

Partial Multi-Label Learning with Missing Labels via Feature-Label Disentanglement

Submitted:

19 March 2026

Posted:

23 March 2026

You are already at the latest version

Abstract
Partial multi-label learning addresses scenarios where each instance is associated with a set of candidate labels that include both relevant and irrelevant ones. In practical scenarios, such label sets are often simultaneously incomplete and noisy, which severely hampers the ability of models to extract compact and discriminative features. To address these issues, we propose an integrated learning paradigm that simultaneously enhances feature compactness and improves robustness against label noise. Our method constructs a similarity graph through the fuzzy C-means algorithm to capture the intrinsic relationships among instances. The resulting graph enables reliable label propagation, which effectively rectifies incorrect annotations and infers missing labels. In addition, we introduce a feature disentanglement mechanism that isolates reliable label-related feature representations from spurious ones introduced by noisy supervision. By integrating feature learning and label refinement into a joint optimization process, the proposed approach achieves a synergistic improvement in both representation quality and label reliability. Extensive theoretical analysis and empirical studies on multiple benchmark datasets demonstrate that our framework consistently outperforms state-of-the-art methods in terms of accuracy, stability and robustness to annotation noise.
Keywords: 
;  ;  ;  ;  

1. Introduction

Multi-label learning (MLL) [1] aims to assign multiple semantic labels to each instance, enabling models to capture the complex correlations among categories. Traditional MLL algorithms usually assume that all training samples are annotated with complete and noise-free label sets. However, this assumption rarely holds in realistic scenarios, where label annotations are often noisy or incomplete due to ambiguous visual content, low-quality data, or inconsistent human judgments. The presence of such imperfect annotations can significantly degrade the performance of conventional MLL models, as they tend to overfit to unreliable supervision. To mitigate this problem, partial multi-label learning (PMLL) [2] has emerged as a practical paradigm for weakly supervised learning. In the PMLL setting, each instance is accompanied by a set of candidate labels that includes both relevant and irrelevant ones. The learning task is to identify the true labels from these candidates while simultaneously learning a robust predictive model. Although this framework alleviates the dependency on exhaustive manual labeling, it introduces new challenges—specifically, how to recover missing labels and suppress the adverse effects of false-positive annotations.
A straightforward strategy for PMLL treats all candidate labels as correct and directly applies standard MLL techniques. Such an approach may yield acceptable results when noisy labels are scarce, but it quickly deteriorates when noise becomes dominant. To address this limitation, recent studies have reformulated PMLL as a latent label inference problem, iteratively refining the candidate label set through probabilistic or graph-based modeling. These methods have demonstrated notable improvements by leveraging structural dependencies among instances to propagate label information and reduce uncertainty.
In real-world learning scenarios, obtaining a completely labeled dataset is often infeasible because manual annotation demands extensive human effort and domain expertise. Annotators may inadvertently neglect certain relevant categories or misassign irrelevant ones, resulting in label sets that are both incomplete and corrupted by noise. Such imperfect supervision has become increasingly common across diverse domains, including medical diagnosis, multimedia retrieval, and social media content tagging. In medical image analysis, clearly discernible pathological patterns allow clinicians to make confident diagnoses. Yet, when the manifestations are subtle or ambiguous, establishing a clear diagnosis becomes difficult, leading to uncertain or missing annotations that may require further expert validation. Similar issues occur in other application areas, where annotation reliability is easily affected by semantic ambiguity or poor data quality.
These practical constraints have motivated growing interest in learning paradigms that integrate the advantages of PMLL and MLL with incomplete supervision, aiming to enhance both robustness and generalization. The goal of such approaches is to construct models that are both robust to noisy labels and capable of generalizing effectively to unseen data. A central challenge is that label noise is seldom purely random. Instead, errors are often correlated with specific regions of the feature space, arising from ambiguous patterns, overlapping semantic categories, or low-quality input data. However, most existing approaches concentrate primarily on correcting or propagating candidate labels, while paying limited attention to learning compact, discriminative representations capable of disentangling reliable label-specific information from misleading features introduced by noisy annotations. Specifically, Zhong et al. [3] proposed the exploration of misleading features from noisy annotations and the disambiguation driven by negative label and noise information. However, the method relies heavily on manually constructed negative label information as the main guidance, which only focuses on disambiguating label-specific local features, whereas fails to integrate global cross-label features and local label-specific features. Moreover, existing approaches often neglect the simultaneous presence of missing and incorrect annotations, as well as the critical task of extracting reliable and informative features. Chen et al. [4] proposed a universal approach for unifying the handling of label noise and incompleteness in multi-label scenarios, where the compatibility with incomplete labels is achieved through the generalization of noise-handling mechanisms. However, the model adopts a deterministic feature extraction module that lacks the ability to quantify the uncertainty of extracted features, making it difficult to distinguish between reliable informative features and noisy irrelevant ones. To address these challenges, in this paper, we propose a novel integrated learning paradigm that jointly enhances feature compactness and robustness against label noise. Specifically, our framework constructs a similarity graph among instances using the fuzzy C-means algorithm, enabling effective label propagation and correction. In addition, we introduce a feature disentanglement mechanism to separate reliable label-specific representations from misleading information caused by noisy annotations. By integrating feature learning and label refinement within a unified optimization process, the proposed approach improves both representation quality and label reliability. Extensive experiments on multiple benchmark datasets demonstrate that our method consistently outperforms state-of-the-art approaches in terms of accuracy, stability, and robustness to annotation noise. The main contributions of this work are summarized as follows:
  • We propose a unified learning paradigm that simultaneously promotes compact, discriminative feature representations and mitigates the impact of label noise, addressing the dual challenges of missing and incorrect annotations in PMLL.
  • By constructing a similarity graph among instances using the fuzzy C-means algorithm, our framework effectively propagates label information, enabling the correction of inaccurate annotations and the inference of missing labels.
  • We design a strategy to separate reliable label-specific features from misleading or noisy signals, allowing the model to focus on informative representations and reduce the adverse effects of corrupted supervision.
  • The proposed approach integrates feature learning and label refinement into a single optimization process, ensuring synergistic improvements in both representation quality and label reliability.
The remainder of this paper is organized as follows. Section 2 reviews related work. Section 3 and Section 4 present the proposed framework and detail the solution methodology. Section 5 reports experimental results and performance analysis. Finally, Section 6 concludes the paper and outlines future research directions.

3. The Proposed Methodology

3.1. Problem Statement and Notations

Consider a multi-label dataset D = ( X , Y ) with a label set L = { l 1 , l 2 , , l q } , where X = [ x 1 , x 2 , , x n ] R n × d denotes the feature matrix, and Y { 1 , 0 , 1 } n × q is the observed label matrix. Here, denotes the matrix transpose, and x i R d represents the d-dimensional feature vector of the i-th instance. For the entry Y i j corresponding to the i-th instance and j-th label, we define:
Y i j = 1 , if l j is a candidate label for x i , 1 , if l j is explicitly excluded for x i , 0 , if the label is unobserved or missing ( true label unknown ) .
In this work, we aim to learn a mapping from X to Y that can accurately predict the true labels for each instance, despite the presence of missing (0) and potentially noisy (incorrect 1 or -1) annotations. Table 1 summarizes the key notations used throughout the paper.

3.2. Instance-level Graph Adjacency Matrix

To capture the pairwise similarity among instances, we define a graph adjacency matrix S R n × n . The similarity between two instances x i and x j is assumed to decrease as their squared Euclidean distance | | x i x j | | 2 increases, meaning that closer points are more similar. To better reflect local consistency and account for uncertainty in the feature space, we employ fuzzy C-means clustering [39,40], which assigns each instance a set of membership degrees across clusters rather than a single hard label. Using these soft memberships, we construct a similarity graph that captures nuanced relationships between instances. Formally, this leads to the following optimization problem:
min S x j N k ( x i ) | | x i x j | | 2 S i j r s . t . x j N k ( x i ) S i j = 1 , i = 1 , · · · , n S i i = 1 , i = 1 , · · · , n S i j 0 , i , j = 1 , · · · , n
where | | · | | denotes the vector norm, N k ( x i ) denotes the set of k nearest neighbors of x i , and r is the fuzzifier controlling the degree of membership weighting. Let N R n × n denote the instance distance matrix, which satisfies the following:
N i j = | | x i x j | | 2 , x j N k ( x i ) , e l s e
Equation (1) can equivalently be expressed in the following form:
min S x j N k ( x i ) N i j S i j r s . t . x j N k ( x i ) S i j = 1 , i = 1 , · · · , n S i i = 1 , i = 1 , · · · , n S i j 0 , i , j = 1 , · · · , n
We can express the Lagrangian function associated with Equation (3) as:
min S { x j N k ( x i ) N i j S i j r θ ( x j N k ( x i ) S i j 1 ) x j N k ( x i ) b j S i j }
where θ and b are the Lagrangian multipliers.
According to the Karush-Kuhn-Tucker (KKT) conditions, the optimal solution is given by:
S i j = ( 1 N i j ) 1 r 1 x j N k ( x i ) ( 1 N i j ) 1 r 1 , x j N k ( x i ) 0 , o t h e r w i s e
Denote S ^ = 1 2 ( S + S ) as the symmetric adjacency matrix representing pairwise instance relationships. This matrix serves as a guidance for subsequent structural modeling in the label space. Unlike conventional manifold learning approaches [41] that rely on predefined graphs for label propagation, we directly infer S ^ from the data via fuzzy clustering, allowing the model to adaptively capture the intrinsic and potentially scattered distribution of the instances.

3.3. Compact Feature-Label Collaboration

High-dimensional input data often include redundant or irrelevant features, which can degrade model performance. Therefore, it is essential to extract a compact set of features that capture the most informative and label-relevant patterns. Compact features are typically decorrelated, encoding distinct information that improves both interpretability and generalization. In addition, semantically abstract features, represented as embedding vectors, can jointly capture feature and label semantics. To facilitate the learning of label-specific representations and promote effective collaboration between feature extraction and classifier training, we define the following optimization objective:
min P , T , F 1 2 | | X T P F | | F 2 + α 2 | | T | | F 2 s . t . P P = I
where F R n × q is the label confidence matrix, with each entry measuring the degree to which an instance possesses a given label. The parameter α is a balancing factor.
The objective in Equation (6) jointly optimizes three components, feature projection, label mapping, and semantic representation, under an orthogonality constraint. Specifically, the term | | X T P F | | F 2 enforces consistency between the transformed feature representations and the label confidence matrix, thereby encouraging T and P to collaboratively capture discriminative and label-relevant information. The regularization term α 2 | | T | | F 2 prevents overfitting by controlling the complexity of the transformation from the original high-dimensional space to the latent space. The constraint encourages P to form a set of orthogonal semantic bases that disentangle label-related factors, thereby strengthening the interaction between features and labels and effectively suppressing redundant correlations. Consequently, the model achieves a principled balance between compactness and discriminability.
Through this formulation, a compact feature–label collaboration mechanism naturally emerges: the latent representation T learns to capture intrinsic structural regularities of the input, while P aligns these representations with the label semantics in a mutually reinforcing manner. The synergy between them promotes more robust generalization and allows the learned embeddings F to manifest both compactness in the feature space and specificity in the label space.

3.4. Label Recovery via Graph Propagation

To mitigate the adverse effects of unknown label noise, we decompose the observed label matrix Y into two complementary components: a reliable label confidence matrix F R n × q and a sparse noise matrix Y 0 R n × q . Formally, the decomposition is expressed as
Y = F J + Y 0 ,
where ∘ denotes the Hadamard (element-wise) product, and J { 0 , 1 } n × q is the binary indicator matrix of observed label occurrences, such that J i j = 0 if Y i j = 0 , and J i j = 1 otherwise. Based on this formulation, the optimization problem can be defined as:
min F , Y 0 Y 0 1 s . t . Y = F J + Y 0 , Y 0 = Y 0 J , Y 0 0 ,
where Y 0 1 denotes the 1 -norm of Y 0 , enforcing sparsity on the noisy label matrix to suppress spurious annotations. The constraint Y 0 = Y 0 J restricts the noise to positions corresponding to observed labels, while Y 0 0 guarantees that corrections are non-negative and remain within the feasible annotation range.
This formulation enables the model to isolate and suppress unreliable labels while preserving the informative confidence structure within F . Once the denoised label confidences are obtained, graph propagation is employed to diffuse the recovered confidence values across semantically similar instances, thereby leveraging the manifold structure of the data. In this way, label recovery becomes a smooth, graph-regularized refinement process that restores latent label consistency and enhances overall annotation reliability. To align the instance-level fuzzy similarity with the label-level semantic similarity, we introduce a graph regularization term based on the Laplacian of the similarity graph. Specifically, the following loss function is employed:
tr ( F C S F ) = 1 2 i , j S ^ i j F i · F j · 2 2 ,
where C S = D S S ^ is the graph Laplacian constructed from the normalized similarity matrix S ^ , and D S is a diagonal degree matrix with entries [ D S ] i i = j = 1 n S ^ i j .
Intuitively, Equation (8) enforces local smoothness in the label confidence space: if two instances x i and x j exhibit high fuzzy similarity in the feature space (i.e., large S ^ i j ), their corresponding label confidence vectors F i · and F j · are encouraged to be close to each other. This mechanism propagates similarity information from the instance manifold to the label domain, ensuring that semantically related samples share consistent label representations. Consequently, the graph Laplacian regularizer effectively bridges the feature and label spaces, leading to smoother and more reliable label recovery across the data manifold.

3.5. Ambiguous Feature Identification

Prior studies [42] have highlighted that noisy labels in real-world datasets are often not generated randomly. Rather, they are frequently induced by ambiguous or confounding content concealed in the feature space. To uncover this relationship, we model the dependence between features and sparse noisy labels by optimizing the following objective:
min W , Y 0 1 2 X W Y 0 F 2 + β W 2 , 1 ,
where the reconstruction term X W Y 0 F 2 isolates ambiguous features that may cause labeling errors, and the 2 , 1 -norm regularization W 2 , 1 promotes row-wise sparsity, effectively selecting the most informative feature dimensions. The hyperparameter β > 0 balances these two objectives.
By integrating the previous formulations in Eqs. (6), (7), and (8) with Equation (9), we obtain a unified framework that simultaneously performs feature mapping, label consistency refinement, instance manifold learning, and ambiguous feature identification. The resulting joint optimization problem is expressed as:
min T , P , W , F , Y 0 1 2 X T P F F 2 + 1 2 X W Y 0 F 2 + λ 2 tr ( F C S F ) + α 2 T F 2 + β W 2 , 1 + γ Y 0 1 s . t . Y = F J + Y 0 , Y 0 = Y 0 J , P P = I , Y 0 0 .
By adopting a block coordinate descent strategy, each variable is iteratively updated while holding the others fixed, ensuring convergence to a stable solution. The detailed algorithmic procedure is provided in the subsequent section.

4. Solutions to the Optimization Problem

To solve the joint optimization problem in Equation (10), we first introduce the augmented Lagrangian function:
L ( T , P , W , F , Y 0 , A ) = 1 2 X T P F F 2 + 1 2 X W Y 0 F 2 + λ 2 tr ( F C S F ) + α 2 T F 2 + β W 2 , 1 + γ Y 0 1 + A , Y F J Y 0 + μ 2 Y F J Y 0 F 2 s . t . Y 0 = Y 0 J , P P = I , Y 0 0 ,
where A R n × q is the Lagrange multiplier matrix and μ > 0 is a trade-off parameter controlling the penalty for constraint violation.
Following the Linearized Alternating Direction Method with Adaptive Penalty (LADMAP) framework, Equation (11) can be equivalently reformulated as:
L ( T , P , W , F , Y 0 , A ) = 1 2 X T P F F 2 + 1 2 X W Y 0 F 2 + λ 2 tr ( F C S F ) + α 2 T F 2 + β W 2 , 1 + γ Y 0 1 + μ 2 Y F J Y 0 + A μ F 2 s . t . Y 0 = Y 0 J , P P = I , Y 0 0 .
This reformulation linearizes the augmented term, allowing each variable to be updated efficiently in a block coordinate descent manner while adaptively adjusting the penalty parameter μ . The LADMAP approach ensures convergence to a stable solution under standard convexity conditions, while respecting the orthogonality and sparsity constraints inherent in the problem.

4.1. Updating P by Fixing Other Variables

The subproblem for P is formulated as:
min P L = 1 2 | | X T P F | | F 2 s . t . P P T = I
The closed-form solution is obtained via singular value decomposition (SVD) of F X T = B Σ R , yielding P = R B .

4.2. Updating T by Fixing Other Variables

Optimizing T corresponds to solving:
min T L = 1 2 X T P F F 2 + α 2 T F 2 .
The closed-form solution can be written as:
T = U ( U X F P V ) ( Λ 1 1 d 1 m Λ 2 + α 1 d 1 m ) V ,
where U and V are the eigenvector matrices of X X and P P , respectively, and Λ 1 , Λ 2 are the corresponding diagonal eigenvalue matrices.

4.3. Updating W by Fixing Other Variables

With T , P , F , Y 0 fixed, the subproblem for W is:
min W L = 1 2 X W Y 0 F 2 + β W 2 , 1 .
Its gradient is
W L = X ( X W Y 0 ) + β Ω W ,
where Ω R d × d is diagonal:
Ω = 1 | | W 1 · | | 2 1 | | W d · | | 2
Treating Ω as fixed at iteration t (denoted Ω ( t ) ), the closed-form update for W is:
W ( t + 1 ) = ( X X + β Ω ( t ) ) 1 X Y 0 .

4.4. Updating F by Fixing Other Variables

The subproblem for F is:
min F L = 1 2 X T P F F 2 + λ 2 tr ( F C S F ) + μ 2 Y F J Y 0 + A μ F 2 .
Setting the gradient to zero gives a linear system for each column F · j :
( I + λ C S + D J · j ) F · j = Q · j , 1 j q ,
where D J · j = diag ( J · j ) and Q = X T P + Y μ Y 0 + A . Since the coefficient matrix is invariant across iterations, its inverse can be precomputed for efficiency.

4.5. Updating Y 0 by Fixing Other Variables

The subproblem over Y 0 is:
min Y 0 L = 1 2 | | X W Y 0 | | F 2 + γ | | Y 0 | | 1 + μ 2 | | Y F J Y 0 + A μ | | F 2 s . t . Y 0 = Y 0 J Y 0 0
This admits the closed-form solution:
Y 0 = S γ 1 + μ + X W + μ Y μ F J + A 1 + μ J ,
where S w + ( a ) = max ( a w , 0 ) is the element-wise positive soft-thresholding operator.
Finally, the Lagrange multiplier A and penalty parameter μ are updated as:
A ( t + 1 ) = A ( t ) + μ ( t + 1 ) ( Y F J + Y 0 ) μ ( t + 1 ) = min ( μ max , ρ μ ( t ) )
where ρ > 0 is a scalar controlling the adaptive increment of μ .

4.6. The Solution of Equation (14)

Following [43], Equation (14) can be solved in closed form for latent feature embedding. By setting the derivative of Equation (14) with respect to T to zero, we obtain:
X X T P P X F P + α T = 0 .
Let the eigenvalue decompositions of the symmetric matrices X X and P P be
X X = U Λ 1 U , P P = V Λ 2 V ,
where U R d × d and V R m × m are orthonormal matrices of eigenvectors, and Λ 1 R d × d , Λ 2 R m × m are diagonal matrices of corresponding eigenvalues.
Substituting these decompositions into Equation (25) yields
U Λ 1 U T V Λ 2 V X F P + α T = 0 .
Multiplying both sides by U on the left and V on the right gives
Λ 1 ( U T V ) Λ 2 U X F P V + α ( U T V ) = 0 .
Considering each i , j -th element, we have
( Λ 1 , i i Λ 2 , j j + α ) [ U T V ] i j = [ U X F P V ] i j .
Equivalently, we have in matrix form that:
U T V = U X F P V Λ 1 1 d 1 m Λ 2 + α 1 d 1 m .
Finally, the closed-form solution for T is
T = U U X F P V Λ 1 1 d 1 m Λ 2 + α 1 d 1 m V .
This completes the proof. □

4.7. Convergence Analysis

To theoretically verify the convergence of the proposed optimization framework, we first introduce a useful lemma.
Lemma 1.
[40] Given any two real numbers x , y 0 , the following inequality holds:
x x 2 2 y y y 2 2 y .
Theorem 1.
Algorithm 1 monotonically decreases the objective function with respect to W in each iteration.
Proof. 
Define the surrogate function for W at iteration t as
F ( W ) = 1 2 X W Y 0 F 2 + β tr ( W Ω ( t ) W ) .
The gradient of F ( W ) with respect to W is
W F ( W ) = X ( X W Y 0 ) + 2 β Ω ( t ) W .
Let W ( t + 1 ) = arg min W F ( W ) . Then, by definition,
F ( W ( t + 1 ) ) F ( W ( t ) ) .
By Lemma 1, for each row W i · , we have
W i · ( t + 1 ) 2 W i · ( t + 1 ) 2 2 2 W i · ( t ) 2 W i · ( t ) 2 W i · ( t ) 2 2 2 W i · ( t ) 2 .
Summing over all rows yields
W ( t + 1 ) 2 , 1 1 2 tr W ( t + 1 ) Ω ( t ) W ( t + 1 ) W ( t ) 2 , 1 1 2 tr W ( t ) Ω ( t ) W ( t ) .
Combining Eqs. (33) and (35), we obtain
F ( W ( t + 1 ) ) + β W ( t + 1 ) 2 , 1 F ( W ( t ) ) + β W ( t ) 2 , 1 .
Equation (36) demonstrates that the objective function L ( W ) decreases monotonically at each iteration, completing the proof.    □
Algorithm 1 The Proposed WPML Algorithm
Require: 
  Feature matrix X , observed label matrix Y , parameters λ , α , β , γ , and the size of nearest neighbors k;
Ensure: 
Learned model coefficient W and label confidence matrix F .
  1:
Compute S according to Equation (5);
  2:
t 0 ;
  3:
Initialize F ( 0 ) = Y , T ( 0 ) = I , Ω ( 0 ) = I , Y 0 ( 0 ) = 0 ;
  4:
Compute the indicator matrices J and N ;
  5:
Repeat
  6:
    Update P ( t + 1 ) according to Equation (13);
  7:
    Update T ( t + 1 ) according to Equation (15);
  8:
    Update W ( t + 1 ) according to Equation (19);
  9:
     Compute the diagonal matrix Ω ( t + 1 ) according to Equation (18);
10:
    Update F ( t + 1 ) according to Equation (21);
11:
    Update Y 0 ( t + 1 ) according to Equation (23);
12:
    Update A ( t + 1 ) and μ ( t + 1 ) according to Equation (24);
13:
    t t + 1 ;
14:
Until convergence;
15:
Return the results.

4.8. Complexity Analysis

We analyze the computational complexity of each major step in the proposed WPML algorithm. Specifically, solving P involves SVD, resulting in to a complexity of O ( n q d + n d m + q m 2 ) . The update of T requires an eigendecomposition operation, with a cost of O ( d 3 + m 2 ) . Updating W incurs a complexity of O ( d 3 + n d q ) , while the computation of F incurs a higher cost of O ( n 2 q ) . Additionally, updating Y 0 requires O ( n d q ) . In summary, the overall time complexity per iteration is O ( n q d + n d m + q m 2 + d 3 + m 2 + n 2 q ) . It is worth noting that matrix inversion for solving W and F only needs to be performed once, which can be precomputed and reused, helping reduce the actual computational overhead in practice. Moreover, the dominant term O ( n 2 q ) arises from label propagation, suggesting that for large-scale datasets, approximations such as sparse neighbors or low-rank propagation could further accelerate computation without sacrificing performance.

5. Experiments

5.1. Experimental Setup

We evaluate the proposed WPML method on a benchmark collection of 16 publicly available multi-label datasets, sourced from the Mulan1 and UcO2 repositories. All feature values are normalized to the range [ 0 , 1 ] to ensure comparability across datasets. Table 2 summarizes the key characteristics of each dataset. In particular, n, d, and q denote the number of instances, features, and labels, respectively. We also report c , the average number of labels per instance, and d , the normalized label cardinality computed by dividing c by the total number of labels q.

5.2. Compared Methods and Evaluation Metrics

We benchmark the proposed WPML algorithm against several state-of-the-art multi-label learning (MLL) methods that are capable of handling noisy or missing labels. All comparative algorithms are obtained from publicly available repositories, with hyperparameters configured according to the original papers. A brief description of each method and its hyperparameter setting is provided below:
  • WPML (Algorithm 1): The hyperparameters λ and α are selected from { 10 2 , 10 1 , , 10 1 } , β is tuned within { 10 3 , 10 2 , , 10 1 } , and γ controlling noisy label sparsity is chosen from { 0.1 , 0.2 , , 1 } . The neighbor size k is fixed at 10.
  • PML-NI3 [42]: This partial multi-label learning method identifies noisy labels caused by ambiguous features. Parameters α and γ are set to 0.5, and λ is selected from { 1 , 10 , 100 } .
  • PML-VLS and PML-MAP4 [7]: Both algorithms belong to the PARTICLA framework, using label propagation for initial label refinement, followed by virtual label splitting or MAP reasoning for final prediction. The credible label threshold is set to 0.9, with neighbor size k = 10 .
  • DM2L-l and DM2L-nl5 [31]: Designed to handle missing labels, these methods exploit local low-rank (DM2L-l) and global high-rank (DM2L-nl) structures using linear and Gaussian kernels, respectively. Regularization parameter λ d is searched over 10 5 to 10 5 , with δ = 0.005 .
  • Glocal6 [45]: Leverages global and local label correlations for mapping high-dimensional features to a low-rank label space. Parameters λ = 1 , λ 2 = 10 3 , while λ 3 and λ 4 are tuned over { 10 4 , , 1 } . Neighbor size k and group size g are selected from { 5 , 10 , 15 , 20 } .
  • ESMC7 [46]: Employs non-linear embedding for tail label prediction. Hyperparameters λ , ρ , and σ z are grid-searched over five orders of magnitude ( 10 1 to 10 5 ).
  • MSWL8 [47]: Handles limited labeled data via a label manifold and semi-supervised learning. Hyperparameters α and β are evaluated over { 10 3 , , 10 3 } , and γ is grid-searched in { 10 4 , , 10 4 } .
To quantitatively assess performance, we adopt five widely used ranking-based metrics: Macro Average AUC ( A U C ), Coverage, Ranking Loss, Average Precision, and Hamming Loss. Higher values of A U C and A v e r a g e P r e c i s i o n indicate better performance, while lower values are preferable for H a m m i n g L o s s , C o v e r a g e , and R a n k i n g L o s s .
To simulate MLL scenarios with noisy or incomplete labels, we designed a controlled label perturbation strategy, which was applied uniformly to all datasets in our experiments. Specifically, for missing labels, each label in the training set was independently removed with a probability of 20%, 40% or 60%; removed labels were marked with ’0’ to indicate their missing status. For noisy labels, we corrupted the remaining non-missing labels at the same three rates 20%, 40% or 60% by randomly flipping the label value from -1 to 1. Due to space limitations, we only report the detailed results under the configuration with 60% missing and noisy labels, as the results under other proportion configurations are similar. A ten-fold cross-validation is conducted on each dataset. The mean and standard deviation of all evaluation metrics are reported in Table 3, Table 4 and Table 5 for comprehensive analysis.

5.3. Performance Analysis

Table 3, Table 4 and Table 5 provide a detailed comparison of the evaluated algorithms across five widely used metrics in multi-label learning: A U C , R a n k i n g L o s s , C o v e r a g e and A v e r a g e P r e c i s i o n . The best-performing algorithm for each dataset is highlighted in bold. From these results, several notable insights can be drawn:
(1) All algorithms demonstrate competitive performance on at least a subset of datasets, highlighting their effectiveness in addressing multi-label learning challenges. Algorithms such as PML-NI, PML-VLS, and MSWL exhibit strong performance on datasets with moderate label sparsity, while ESMC and Glocal achieve improvements on datasets with long-tailed label distributions. However, the performance varies considerably across datasets, reflecting the diversity in label cardinality, feature dimensionality, and noise levels.
(2) The proposed WPML consistently achieves near-optimal performance across the majority of datasets. In terms of A U C , WPML obtains the highest score on 75% of datasets, demonstrating its superior discriminative capability. For R a n k i n g L o s s , WPML ranks best on 56.25% of datasets, indicating that it more accurately preserves label orderings. Similarly, WPML excels in A v e r a g e P r e c i s i o n (62.5%), suggesting that the model maintains strong predictive accuracy even under label sparsity and noise. While WPML shows a slightly smaller advantage in C o v e r a g e (50%), its performance remains highly competitive and often close to the best-performing algorithms.
(3) On text datasets such as Bibtex and Business, WPML demonstrates substantial improvements in A U C and R a n k i n g L o s s compared to baseline methods, likely due to its robust handling of noisy label assignments common in user-annotated tags. On music and audio datasets such as CAL500 and Emotions, WPML’s A v e r a g e P r e c i s i o n gains suggest that the model effectively captures correlations among semantically related labels.
These results provide strong evidence that WPML exhibits exceptional robustness in handling incomplete and noisy label assignments. This superior performance is largely due to WPML’s ability to model intricate interactions between the feature and label spaces. By jointly analyzing both spaces from multiple perspectives, WPML captures higher-order dependencies that are often overlooked by other methods, yielding more compact and informative representations that enhance generalization to unseen data. Furthermore, WPML’s design leverages a synergistic combination of feature space regularization, label space exploration, and sparse label correction. This integrated approach not only suppresses noise and recovers missing information but also reinforces meaningful label patterns, enabling the model to deliver robust predictions and effective label disambiguation in a unified framework.

5.4. Statistical Analysis of Algorithm Performance

To quantitatively assess the effectiveness of the proposed WPML algorithm, we conducted rigorous non-parametric tests, namely the Friedman test [48] and the Bonferroni-Dunn test [49]. These tests allow us to determine whether the performance differences between WPML and existing multi-label learning methods are statistically significant.
Let r i denote the average rank of the i-th algorithm across all datasets, N the total number of datasets, and K the number of algorithms compared. Under the null hypothesis that assuming all algorithms perform equivalently, the Friedman statistic F F follows an F-distribution with ( K 1 ) ( N 1 ) degrees of freedom. The Friedman statistic is formally defined as:
F F = ( N 1 ) χ F 2 N ( K 1 ) χ F 2 , where χ F 2 = 12 N K ( K + 1 ) i = 1 K r i 2 K ( K + 1 ) 2 4 .
Table 6 presents the Friedman statistics for each evaluation metric alongside the corresponding critical value at a significance level of α = 0.05 ( K = 8 , N = 16 ). All computed Friedman statistics substantially exceed the critical value, indicating that the null hypothesis of equal performance can be confidently rejected. This confirms that statistically significant differences exist among the algorithms across all evaluation metrics. To further examine pairwise differences between algorithms, we employed the Bonferroni-Dunn test. The critical difference (CD) for distinguishing performance is computed as:
C D α = q α K ( K + 1 ) 6 N ,
where q α = 2.098 for α = 0.05 , yielding C D α = 2.3296 with K = 8 and N = 16 . Figure 1 illustrates the CD diagrams for all metrics, where algorithms not linked by a line are considered statistically different.
From the CD diagrams, it is evident that WPML consistently ranks higher than competing methods across all metrics. Specifically, WPML demonstrates statistically significant superiority in R a n k i n g L o s s and A v e r a g e P r e c i s i o n , highlighting its robustness and effectiveness in handling noisy or incomplete label scenarios. These results provide strong quantitative evidence that the proposed WPML algorithm not only achieves high predictive performance but also maintains stability and reliability across diverse multi-label datasets.

5.5. Sensitivity Analysis

To evaluate the robustness of WPML with respect to its hyperparameters, we conducted a systematic sensitivity analysis. Each parameter’s effect was examined by varying one or two parameters at a time while keeping the others fixed, thereby isolating their individual contributions to model performance. Figure 2 and Figure 3 illustrate the impact of the hyperparameters λ , α , β , and γ on the Emotion dataset.
The results indicate that WPML achieves peak performance within intermediate ranges of the parameter space, while extreme values lead to performance deterioration. Specifically, a very small λ fails to adequately preserve local instance structures, diminishing the model’s ability to capture critical relationships in the data. Conversely, an excessively large λ disproportionately emphasizes local structure, suppressing the effect of other regularization terms and thereby degrading overall performance. Similar patterns are observed for α , β , and γ , where both overly small and large values result in suboptimal outcomes. These observations underscore the model’s sensitivity to hyperparameter selection and highlight the necessity of choosing appropriate ranges to ensure stable and balanced performance. While WPML exhibits robustness within well-chosen parameter intervals, improper tuning can significantly impair its effectiveness. Consequently, efficient hyperparameter optimization strategies are recommended for practical deployment to maintain optimal predictive performance.

5.6. Ablation Study

To evaluate the contribution of local instance structure within the feature space, we introduce a simplified variant of WPML, denoted as WPML-d, which omits local structure information. Figure 4 compares the performance of WPML and WPML-d across multiple evaluation metrics. The results demonstrate that WPML generally outperforms WPML-d, confirming that integrating local instance relationships enhances the model’s ability to preserve critical patterns and improves overall predictive accuracy. Interestingly, WPML-d occasionally surpasses the full WPML model in specific cases, particularly when the local feature structure conflicts with the label space. This suggests that mismatches between feature and label structures can introduce noise, and in such scenarios, ignoring local structure enables the model to rely on more informative instance-level cues. Consequently, while incorporating local structure typically strengthens generalization and robustness, careful consideration of feature-label alignment is necessary, and adaptive strategies may further mitigate inconsistencies in heterogeneous datasets.

5.7. Convergence Analysis

Figure 5 presents the convergence trends of the objective function on the Image and Yeast datasets. The algorithm exhibits a rapid decrease in the objective value during the initial iterations, indicating its ability to quickly capture the dominant structures in the data. As training proceeds, the rate of decrease slows, and the objective function gradually stabilizes, suggesting that the algorithm is approaching a near-optimal solution.
This convergence pattern reflects a two-stage optimization process: an initial phase of fast descent, followed by a refinement phase with slower, more precise adjustments. Such behavior demonstrates WPML’s capacity to balance convergence speed with solution accuracy, efficiently navigating the trade-off between rapid optimization and fine-grained precision. The empirical evidence indicates that WPML reliably attains stable and optimal solutions across diverse datasets, highlighting its robustness and practical applicability. The combination of swift early adaptation and gradual fine-tuning ensures both efficiency and reliability, making WPML particularly suitable for complex multi-label learning tasks where both speed and stability are critical.

6. Conclusions

In this work, we introduced a novel framework for partial multi-label learning that simultaneously addresses missing and noisy labels. By combining graph-based similarity propagation with collaborative compact feature learning, our approach improves label prediction accuracy while mitigating the adverse effects of weak annotations. Specifically, a graph similarity matrix constructed via fuzzy C-means clustering enables effective label consistency propagation, facilitating the detection of noisy labels and recovery of missing ground-truth labels. Additionally, the model separates refined, label-specific features from ambiguous, noise-related ones, ensuring that only informative signals guide classifier training. Through joint optimization of feature representations and label predictions, the proposed method exhibits enhanced robustness and predictive performance. Both theoretical insights and extensive empirical evaluations demonstrate its clear advantage over existing approaches in weakly annotated multi-label learning scenarios.
Future work may focus on several directions: (1) exploring alternative structural clustering techniques to potentially improve similarity-based label propagation; (2) enhancing the scalability of the framework for large-scale, high-dimensional datasets through computational optimizations; and (3) extending the approach to real-world applications such as healthcare, where data is often noisy and incomplete, for tasks including medical diagnosis, patient monitoring, and predictive modeling of clinical outcomes.

Author Contributions

Conceptualization, Y.T. and A.T.; methodology, Y.T. and A.T.; software, Y.T. and A.T.; validation, Y.T. and A.T.; formal analysis, Y.T. and A.T.; investigation, Y.T. and A.T.; resources, Y.T. and A.T.; data curation, Y.T. and A.T.; writing—original draft preparation, Y.T. and A.T.; writing—review and editing, Y.T. and A.T.; visualization, Y.T. and A.T.; supervision, Y.T. and A.T.; project administration, Y.T. and A.T.; funding acquisition, A.T. All authors have read and agreed to the published version of the manuscript.

Funding

This work was supported by the Research initiation project of Huaqiao University (No. 24BS114), and Open Project Foundation of Key Laboratory of Computation Intelligence and Chinese Information Processing of Ministry of Education and Key Laboratory of Data Intelligence and Cognitive Computing of Shanxi Province (No. CICIP2024006).

Institutional Review Board Statement

Not applicable.

Data Availability Statement

All multi-label datasets used in the experiments are from a multi-label classification dataset repository that is available at http://mulan.sourceforge.net/datasets.html and http://www.uco.es/kdis/mllresources/.

Conflicts of Interest

The authors declare no conflicts of interest.

References

  1. Liu, W.; Wang, H.; Shen, X.; Tsang, I.W. The emerging trends of multi-label learning. IEEE Trans. Pattern Anal. Mach. Intell. 2021, 44(11), 7955–7974. [Google Scholar] [CrossRef]
  2. Xie, M.; Huang, S. Partial multi-label learning. In Proc. AAAI Conf. Artif. Intell., 2018; pp. 4302–4309.
  3. Zhong, J.; Shang, R.; Zhao, F.; Zhang, W.; Xu, S. Negative label and noise information guided disambiguation for partial multi-label learning. IEEE Trans. Multim. 2024, 26, 9920–9935. [Google Scholar] [CrossRef]
  4. Chen, J.-Y.; Li, S.-Y.; Huang, S.-J.; Chen, S.; Wang, L.; Xie, M.-K. UNM: A universal approach for noisy multi-label learning. IEEE Trans. Knowl. Data Eng. 2024, 36(9), 4968–4980. [Google Scholar] [CrossRef]
  5. Zhang, M.; Yu, F.; Tang, C. Disambiguation-free partial label learning. IEEE Trans. Knowl. Data Eng. 2017, 29(10), 2155–2167. [Google Scholar] [CrossRef]
  6. Gibaja, E.; Ventura, S. A tutorial on multilabel learning. ACM Comput. Surv. 2015, 47(3), 1–38. [Google Scholar] [CrossRef]
  7. Zhang, M.; Fang, J. Partial multi-label learning via credible label elicitation. IEEE Trans. Pattern Anal. Mach. Intell. 2021, 43, 3587–3599. [Google Scholar] [CrossRef] [PubMed]
  8. Sun, L.; Du, W.; Ding, W.; Long, Q.; Xu, J. Granular ball-based fuzzy multineighborhood rough set for feature selection via label enhancement. Eng. Appl. Artif. Intell. 2025, 145, 110191. [Google Scholar] [CrossRef]
  9. Yan, Y.; Li, S.; Feng, L. Partial multi-label learning with mutual teaching. Knowl.-Based Syst. 2021, 212, 106624. [Google Scholar] [CrossRef]
  10. Xie, M.; Huang, S. Semi-supervised partial multi-label learning. In IEEE Int. Conf. Data Mining (ICDM), 2020; pp. 691–700.
  11. Li, Z.; Jia, Y.; Yu, M.; Miao, Z. Calibrated disambiguation for partial multi-label learning. In Proc. AAAI Conf. Artif. Intell., vol. 39, 2025; pp. 18620–18628.
  12. Wang, C.; Zhang, Y.; An, S.; Deng, T. Adaptive feature selection based on fuzzy rough set fusion model with class variance. Pattern Recognit. 2026, 170, 112014. [Google Scholar] [CrossRef]
  13. Wang, C.; Wang, Y.; Deng, T.; Huang, Y. A nonlinear multi-label learning model based on tanh mapping. Eng. Appl. Artif. Intell. 2023, 126, 106837. [Google Scholar] [CrossRef]
  14. Han, Q.; Hu, L.; Gao, W. Integrating label confidence-based feature selection for partial multi-label learning. Pattern Recognit. 2025, 161, 111281. [Google Scholar] [CrossRef]
  15. Hang, J.-Y.; Zhang, M.-L. Partial multi-label learning via label-specific feature corrections. Sci. China Inf. Sci. 2025, 68(3), 132104. [Google Scholar] [CrossRef]
  16. Sun, Z.; Chen, Z.; Liu, J.; Chen, Y.; Yu, Y. Partial multi-label feature selection via low-rank and sparse factorization with manifold learning. Knowl.-Based Syst. 2024, 296, 111899. [Google Scholar] [CrossRef]
  17. Jalali, H.; Kasneci, G. Multilabel Classification for Entry-Dependent Expert Selection in Distributed Gaussian Processes. Entropy 2025, 27, 307. [Google Scholar] [CrossRef]
  18. Yang, F.; Jia, Y.; Liu, H.; Dong, Y.; Hou, J. Noisy label removal for partial multi-label learning. In Proc. 30th ACM SIGKDD Conf. Knowl. Discov. Data Min., 2024; pp. 3724–3735.
  19. Qian, W.; Tu, Y.; Huang, J.; Shu, W.; Cheung, Y.-M. Partial multilabel learning using noise-tolerant broad learning system with label enhancement and dimensionality reduction. IEEE Trans. Neural Netw. Learn. Syst. 2025, 36(2), 3758–3772. [Google Scholar] [CrossRef] [PubMed]
  20. Li, R. J.; Ma, Y. C.; Chen, H.; Yang, X. F.; Xing, Z. W. Coordinate descent for top-k multi-label feature selection with pseudo-label learning and manifold learning. Neurocomput. 2025, 658, 131640. [Google Scholar] [CrossRef]
  21. Bucak, S.S.; Jin, R.; Jain, A.K. Multi-label learning with incomplete class assignments. In Proc. IEEE/CVF Conf. Comput. Vis. Pattern Recognit., 2011; pp. 2801–2808.
  22. Yu, H.-F.; Jain, P.; Kar, P.; Dhillon, I. Large-scale multi-label learning with missing labels. In Int. Conf. Mach. Learn., PMLR, 2014; pp. 593–601.
  23. Chen, G.; Song, Y.; Wang, F.; Zhang, C. Semi-supervised multi-label learning by solving a sylvester equation. In Proc. 2008 SIAM Int. Conf. Data Mining, 2008; pp. 410–419.
  24. Jain, V.; Modhe, N.; Rai, P. Scalable generative models for multi-label learning with missing labels. In Int. Conf. Mach. Learn., PMLR, 2017; pp. 1636–1644.
  25. Kong, X.; Wu, Z.; Li, L.-J.; Zhang, R.; Yu, P.S.; Wu, H.; Fan, W. Large-scale multi-label learning with incomplete label assignments. In Proc. 2014 SIAM Int. Conf. Data Mining, 2014; pp. 920–928.
  26. Wang, C.; Wang, Y.; Deng, T.; Ding, W. Missing multi-label learning based on the fusion of two-level nonlinear mappings. Inf. Fusion 2024, 103, 102105. [Google Scholar] [CrossRef]
  27. Jiang, L.; Yu, G. X.; Guo, M. Z.; Wang, J. Feature selection with missing labels based on label compression and local feature correlation. Neurocomput. 2020, 395, 95–106. [Google Scholar] [CrossRef]
  28. Yang, H.; Zhou, J.T.; Cai, J. Improving multi-label learning with missing labels by structured semantic correlations. In Comput. Vis.–ECCV 2016: 14th Eur. Conf., Springer, 2016; pp. 835–851.
  29. Wu, B.; Jia, F.; Liu, W.; Ghanem, B.; Lyu, S. Multi-label learning with missing labels using mixed dependency graphs. Int. J. Comput. Vis. 2018, 126(8), 875–896. [Google Scholar] [CrossRef]
  30. Braytee, A.; Liu, W.; Anaissi, A.; Kennedy, P.J. Correlated multi-label classification with incomplete label space and class imbalance. ACM Trans. Intell. Syst. Technol. 2019, 10(5), 1–26. [Google Scholar] [CrossRef]
  31. Ma, J.; Chow, T.W. Label-specific feature selection and two-level label recovery for multi-label classification with missing labels. Neural Netw. 2019, 118, 110–126. [Google Scholar] [CrossRef]
  32. Yin, T.; Chen, H.; Wang, Z.; Liu, K.; Yuan, Z.; Horng, S.-J.; Li, T. Feature selection for multilabel classification with missing labels via multi-scale fusion fuzzy uncertainty measures. Pattern Recognit. 2024, 110580. [Google Scholar] [CrossRef]
  33. Dai, J.; Li, M.; Zhang, C. Multi-label feature selection with missing labels by weak-label fusion fuzzy discernibility pair. Inf. Fusion 2025, 117, 102921. [Google Scholar] [CrossRef]
  34. Sun, L.; Yin, T.; Ding, W.; Qian, Y.; Xu, J. Feature selection with missing labels using multilabel fuzzy neighborhood rough sets and maximum relevance minimum redundancy. IEEE Trans. Fuzzy Syst. 2021, 30(5), 1197–1211. [Google Scholar] [CrossRef]
  35. Sun, L.; Lyu, G.; Feng, S.; Huang, X. Beyond missing: Weakly-supervised multi-label learning with incomplete and noisy labels. Appl. Intell. 2021, 51(3), 1552–1564. [Google Scholar] [CrossRef]
  36. Ding, J.; Zhang, Y.; Jia, L.; Fu, X.; Jiang, Y. Noisy feature decomposition-based multi-label learning with missing labels. Inf. Sci. 2024, 662, 120228. [Google Scholar] [CrossRef]
  37. Wei, T.; Guo, L.; Li, Y.; Gao, W. Learning safe multi-label prediction for weakly labeled data. Mach. Learn. 2018, 107, 703–725. [Google Scholar] [CrossRef]
  38. Fang, Q.; Xiang, C.; Duan, J.; Soufiyan, B.; Shao, C.; Yang, X.; Xu, S.; Yu, H. OMAL: A Multi-Label Active Learning Approach from Data Streams. Entropy 2025, 27, 363–363. [Google Scholar] [CrossRef] [PubMed]
  39. Bezdek, J. C. Pattern recognition with fuzzy objective function algorithms; Springer Sci. & Bus. Media, 2013.
  40. Nie, F.; Xu, D.; Tsang, I.; Zhang, C. Flexible manifold embedding: A framework for semi-supervised and unsupervised dimension reduction. IEEE Trans. Image Process. 2010, 19(7), 1921–1932. [Google Scholar] [CrossRef]
  41. Liu, G.; Li, Q.; Yang, X.; Xing, Z.; Ma, Y. Partial multi-label feature selection based on label matrix decomposition. Neural Comput. Appl. 2025, 37(6), 4207–4227. [Google Scholar] [CrossRef]
  42. Xie, M.; Huang, S. Partial multi-label learning with noisy label identification. IEEE Trans. Pattern Anal. Mach. Intell. 2022, 44, 3676–3687. [Google Scholar]
  43. Yu, Z.; Zhang, M. Multi-label classification with label-specific feature generation: A wrapped approach. IEEE Trans. Pattern Anal. Mach. Intell. 2022, 44, 5199–5210. [Google Scholar] [CrossRef]
  44. Ma, Z.; Chen, C. Expand globally, shrink locally: Discriminant multilabel learning with missing labels. Pattern Recognit. 2021, 111, 107675. [Google Scholar] [CrossRef]
  45. Zhu, Y.; Kwok, J.; Zhou, Z. Multilabel learning with global and local label correlation. IEEE Trans. Knowl. Data Eng. 2018, 30(6), 1081–1094. [Google Scholar] [CrossRef]
  46. Akbarnejad, A.; Baghshah, M. An efficient semi-supervised multilabel classifier capable of handling missing labels. IEEE Trans. Knowl. Data Eng. 2019, 31(2), 229–242. [Google Scholar] [CrossRef]
  47. Zhang, J.; Li, S.; Jiang, M.; Tan, K. Learning from weakly labeled data based on manifold regularized sparse model. IEEE Trans. Cybern. 2022, 52, 3841–3854. [Google Scholar] [CrossRef] [PubMed]
  48. Friedman, M. A comparison of alternative tests of significance for the problem of m rankings. Ann. Math. Stat. 1940, 11(1), 86–92. [Google Scholar] [CrossRef]
  49. Demsar, J. Statistical comparisons of classifiers over multiple data sets. J. Mach. Learn. Res. 2006, 7, 1–30. [Google Scholar]
Figure 1. Comparison of WPML against algorithms under comparison with the Bonferroni-Dunn test ( C D = 2.3296 at 0.05 significance level). Algorithms not connected with WPML in the CD diagram are considered to have a significantly different performance from the control approach.
Figure 1. Comparison of WPML against algorithms under comparison with the Bonferroni-Dunn test ( C D = 2.3296 at 0.05 significance level). Algorithms not connected with WPML in the CD diagram are considered to have a significantly different performance from the control approach.
Preprints 203983 g001
Figure 2. Sensitivity analysis of WPML on Emotion dataset by considering the variations of parameters λ and α .
Figure 2. Sensitivity analysis of WPML on Emotion dataset by considering the variations of parameters λ and α .
Preprints 203983 g002
Figure 3. Sensitivity analysis of WPML on Emotion dataset by considering the variations of parameters β and γ .
Figure 3. Sensitivity analysis of WPML on Emotion dataset by considering the variations of parameters β and γ .
Preprints 203983 g003
Figure 4. Comparisons of WPML and the degenerated version WPML-d in terms of each evaluation metric.
Figure 4. Comparisons of WPML and the degenerated version WPML-d in terms of each evaluation metric.
Preprints 203983 g004
Figure 5. Convergence analysis of WPML on Image and Yeast datasets.
Figure 5. Convergence analysis of WPML on Image and Yeast datasets.
Preprints 203983 g005
Table 1. Notations frequently used.
Table 1. Notations frequently used.
Notation Meaning
n Instance number
d Feature size
q Label number
m Embedded feature size
x R d Feature vector
X R n × d Feature matrix
y R q Label vector
Y { 1 , 0 , 1 } n × q Observed label matrix, where `0’ means unknown annotation
S R n × n Fuzzy similarity matrix
S i · R n × 1 ith row vector of S
S · j R 1 × n jth column vector of S
S i j i j th entry of S
N k ( x ) Top k-nearest neighbors of x
| | · | | 1 1 -norm
| | · | | F Frobenius norm
| | · | | 2 L2-norm
Hadamard product (entry-wise product)
Hadamard division (entry-wise division)
t r ( · ) Trace norm
T Transposition
< > Hilbert-Schmidt inner product
D v Diagonal matrix of vector v
F R n × q Predicted label matrix
J { 0 , 1 } n × q Label occurrence indicator matrix
Y 0 R n × q Noisy label matrix
T R d × m Embedding projection matrix
P R m × q Latent mapping matrix
W R d × q Noisy mapping matrix
Table 2. The information of datasets used in the experiment.
Table 2. The information of datasets used in the experiment.
Data set n d q c d
Birds 645 260 19 1.014 .053
Business 5000 438 30 1.588 .053
Bibtex 7395 1836 159 2.402 .015
CAL500 502 68 174 26.044 .150
Computers 5000 681 33 1.509 .048
Education 5000 550 33 1.461 .044
Emotions 593 72 6 1.868 .311
Entertainment 5000 640 21 1.414 .067
Eron 1702 1001 53 3.378 .064
Genbase 662 1186 27 1.252 .046
Health 5000 612 32 1.662 .052
Image 2000 294 5 1.236 .247
Medical 978 1449 45 1.245 .028
Reference 5000 793 33 1.169 .035
Scene 2407 294 6 1.074 .179
Yeast 2417 103 14 4.237 .303
Table 3. A comparative analysis of prediction performance among different algorithms in terms of A U C , with the best results (the larger, the better) highlighted in bold.
Table 3. A comparative analysis of prediction performance among different algorithms in terms of A U C , with the best results (the larger, the better) highlighted in bold.
Methods WPML PML-NI PML-VLS PML-MAP D2ML Glocal ESMC MSWL
Birds .846 .840 .692 .729 .765 .806 .728 .813
Business .920 .766 .540 .538 .897 .775 .737 .663
Bibtex .751 .728 .496 .496 .680 .660 .721 .560
CAL500 .746 .716 .514 .514 .709 .703 .597 .714
Computer .867 .809 .559 .551 .823 .807 .777 .788
Education .890 .822 .676 .661 .843 .801 .778 .826
Emotions .718 .708 .502 .502 .686 .716 .594 .766
Entertainment .858 .853 .591 .574 .817 .778 .807 .802
Eron .877 .792 .501 .501 .793 .797 .846 .536
Genbase .986 .985 .502 .502 .972 .980 .958 .984
Health .926 .912 .636 .604 .888 .851 .882 .874
Image .793 .781 .790 .786 .743 .797 .600 .762
Medical .958 .918 .896 .896 .914 .919 .874 .650
Reference .851 .874 .626 .620 .868 .857 .834 .857
Scene .545 .357 .504 .504 .387 .559 .453 .767
Yeast .653 .562 .505 .505 .618 .601 .564 .509
Table 4. A comparative analysis of prediction performance among different algorithms in terms of R a n k i n g L o s s , with the best results (the smaller, the better) highlighted in bold.
Table 4. A comparative analysis of prediction performance among different algorithms in terms of R a n k i n g L o s s , with the best results (the smaller, the better) highlighted in bold.
Methods WPML PML-NI PML-VLS PML-MAP D2ML-nl Glocal ESMC MSWL
Birds .121 .126 .156 .137 .192 .157 .235 .152
Business .051 .244 .115 .046 .077 .232 .270 .337
Bibtex .234 .257 .304 .344 .325 .337 .269 .434
CAL500 .257 .284 .614 .194 .291 .297 .400 .286
Computer .101 .164 .160 .111 .140 .180 .193 .206
Education .104 .165 .093 .108 .150 .180 .209 .157
Emotions .259 .272 .480 .461 .292 .266 .384 .209
Entertainment .110 .114 .160 .162 .158 .190 .159 .168
Eron .105 .187 .192 .127 .183 .186 .137 .464
Genbase .003 .004 .009 .140 .012 .007 .022 .004
Health .051 .063 .153 .108 .091 .119 .088 .196
Image .165 .176 .198 .186 .214 .186 .369 .350
Medical .037 .070 .140 .141 .074 .070 .116 .178
Reference .124 .105 .159 .101 .117 .125 .143 .125
Scene .426 .629 .427 .498 .593 .417 .531 .209
Yeast .346 .432 .265 .272 .373 .391 .431 .499
Table 5. Comparative analysis of prediction performance of different algorithms in terms of A v e r a g e P r e c i s i o n , where the best results (the larger the better) are shown in bold.
Table 5. Comparative analysis of prediction performance of different algorithms in terms of A v e r a g e P r e c i s i o n , where the best results (the larger the better) are shown in bold.
Methods WPML PML-NI PML-VLS PML-MAP D2ML-nl Glocal ESMC MSWL
Birds .723 .707 .695 .688 .569 .653 .563 .651
Business .860 .573 .854 .866 .679 .536 .570 .468
Bibtex .256 .207 .243 .223 .224 .239 .232 .116
CAL500 .443 .418 .382 .468 .418 .398 .289 .383
Computer .654 .593 .513 .586 .544 .599 .573 .494
Education .565 .541 .583 .543 .427 .543 .500 .556
Emotions .726 .722 .537 .566 .702 .711 .634 .759
Entertainment .664 .660 .515 .556 .465 .591 .594 .605
Eron .636 .531 .480 .490 .504 .554 .630 .477
Genbase .994 .994 .936 .945 .931 .990 .893 .994
Health .757 .751 .660 .612 .611 .685 .719 .699
Image .795 .779 .777 .782 .735 .554 .595 .763
Medical .864 .776 .714 .797 .759 .794 .653 .606
Reference .666 .658 .555 .595 .558 .660 .617 .662
Scene .512 .348 .426 .418 .405 .507 .393 .759
Yeast .619 .572 .523 .627 .584 .593 .564 .575
Table 6. Friedman test results and critical value ( α = 0.05 , K = 8 , N = 16 ) for various performance metrics.
Table 6. Friedman test results and critical value ( α = 0.05 , K = 8 , N = 16 ) for various performance metrics.
Metric F F Critical Value
AUC 49.3722 3.031
Ranking Loss 9.5255 3.031
Coverage 9.7286 3.031
Average Precision 11.2720 3.031
Hamming Loss 8.1667 3.031
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.
Copyright: This open access article is published under a Creative Commons CC BY 4.0 license, which permit the free download, distribution, and reuse, provided that the author and preprint are cited in any reuse.
Prerpints.org logo

Preprints.org is a free preprint server supported by MDPI in Basel, Switzerland.

Subscribe

Disclaimer

Terms of Use

Privacy Policy

Privacy Settings

© 2026 MDPI (Basel, Switzerland) unless otherwise stated