ConceptioArchivearXiv CS
arXiv CSopen access

Bringing Clustering to MLL: Weakly-Supervised Clustering for Partial Multi-Label Learning

Unknown · 2026 · arxiv_cs
arXiv CS · Papers · License: Open Access · 2026
Open Source ↗Direct PDF ↓
machine learning, deep learning, neural networks

Bringing Clustering to MLL: Weakly-Supervised Clustering for Partial Multi-Label Learning Yu Chen, Weijun Lv, Yue Huang, Xuhuan Zhu, Fang Li School of Automation, Guangdong University of Technology

arXiv:2604.09359v1 [cs.LG] 10 Apr 2026

[email protected]

Abstract Label noise in multi-label learning (MLL) poses significant challenges for model training, particularly in partial multilabel learning (PML) where candidate labels contain both relevant and irrelevant labels. While clustering offers a natural approach to exploit data structure for noise identification, traditional clustering methods cannot be directly applied to multi-label scenarios due to a fundamental incompatibility: clustering produces membership values that sum to one per instance, whereas multi-label assignments require binary values that can sum to any number. We propose a novel weakly-supervised clustering approach for PML (WSC-PML) that bridges clustering and multi-label learning through membership matrix decomposition. Our key innovation decomposes the clustering membership matrix A into two components: A = Π ⊙ F, where Π maintains clustering constraints while F preserves multi-label characteristics. This decomposition enables seamless integration of unsupervised clustering with multi-label supervision for effective label noise handling. WSC-PML employs a three-stage process: initial prototype learning from noisy labels, adaptive confidence-based weak supervision construction, and joint optimization via iterative clustering refinement. Extensive experiments on 24 datasets demonstrate that our approach outperforms six state-of-the-art methods across all evaluation metrics.

1. Introduction Multi-label learning [12] has emerged as a fundamental machine learning paradigm where each instance can be simultaneously associated with multiple class labels. Unlike traditional single-label classification, multi-label learning addresses scenarios where objects naturally belong to multiple categories, such as text categorization where documents may cover multiple topics, image annotation where photos contain multiple objects, or medical diagnosis where patients may have multiple symptoms. This paradigm has

Figure 1. Example of partial multi-label learning with label noise: Candidate labels contain both ground-truth labels (Cloud, Ocean, Boat, Sky) and false positives (Cotton).

been widely applied in multiple fields [18, 31]. Traditional multi-label learning approaches assume the availability of complete and accurate label information during training, where each training instance is associated with its exact set of relevant labels. However, this assumption is often unrealistic in practical applications due to the expensive and time-consuming nature of obtaining precise multilabel annotations. Human annotators may miss relevant labels, introduce irrelevant ones, or provide incomplete label sets, making the acquisition of perfect multi-label training data challenging and costly. To address these limitations, partial multi-label learning (PML) [22] has been proposed as a more practical learning paradigm. In PML, each training instance is associated with a candidate label set that contains all relevant labels but may also include irrelevant ones. This setting reflects real-world annotation scenarios where it is easier to provide a superset of potential labels rather than the exact label set. For instance, when annotating images, annotators may include all possible objects they suspect to be present, as shown in Figure 1. While this approach reduces annotation cost and effort, it introduces the significant challenge of learning from noisy label information.

Current approaches to PML predominantly adopt two main paradigms: 1) label correction methods that aim to identify and remove noisy labels from candidate sets [16, 27]; 2) probabilistic modeling approaches that estimate label confidence by exploiting various instance-wise or label-wise relationships [2, 24]. These methods typically focus on developing denoising mechanisms or uncertainty quantification techniques. However, such approaches often overlook the valuable underlying data structure that could provide crucial insights for label disambiguation. Clustering presents a promising avenue for exploiting data structure in PML, as it can naturally group similar instances and potentially separate relevant labels from noise. Some recent work has attempted to integrate clustering with PML [5]. However, these approaches face a fundamental limitation: traditional clustering produces membership values that sum to one per instance, but MLL scenarios require binary label assignments, creating an incompatibility that prevents direct use of clustering memberships as multi-label predictions. To address this incompatibility, we propose WSC-PML, a novel weakly-supervised clustering approach for PML. Our key innovation decomposes the traditional clustering membership matrix A into two specialized components: A = Π ⊙ F, where Π maintains clustering constraints while F preserves multi-label characteristics . This decomposition enables the first effective integration of unsupervised clustering principles with multi-label supervision, allowing simultaneous exploitation of data structure and label information. Our three-stage approach includes: 1) initial prototype learning from noisy candidate labels, 2) confidence-based weak supervision construction using prototype-distance relationships, and 3) joint optimization of pseudo-labels and class prototypes via weaklysupervised clustering. Through this novel integration, WSC-PML addresses the fundamental limitations of existing PML methods while opening new possibilities for structure-aware multi-label learning. The main contributions of this paper are as follows: • This paper proposes a novel membership matrix decomposition that resolves the incompatibility between clustering constraints and multi-label scenarios. • This paper presents a three-stage weakly-supervised clustering framework that jointly optimizes pseudo-labels and class prototypes. • This paper designs an adaptive confidence mechanism that dynamically adjusts supervision strength based on prototype-distance relationships.

2. Related Work Partial multi-label learning is closely related to two popular machine learning frameworks, namely multi-label learning (MLL) and partial label learning (PLL). Multi-label learning has evolved significantly, address-

ing scenarios where each instance can be simultaneously associated with multiple class labels. Traditional approaches often converted multi-label problems into binary classification tasks [1], but researchers have increasingly focused on exploiting label correlations [14] and higher-order dependencies [15]. Recent advances have integrated manifold learning principles [30, 35], leveraging the assumption that similar instances may share labels to preserve structures in both feature and label spaces. However, traditional multilabel learning assumes accurate label information, which is unrealistic given the high cost and time requirements of precise annotation. Partial label learning (PLL) is a multi-class single-label task where each instance is associated with a set of candidate labels, one of which is correct and the others are noisy. PLL methods typically employ disambiguation strategies to identify the singular ground-truth label from the candidate set [19], either by averaging potential label outputs [25] or by treating the ground-truth label as a latent variable in iterative optimization frameworks [29]. PLL algorithms effectively handle noise but are limited to single-label predictions, making them unsuitable for multi-label scenarios where instances belong to multiple classes. Partial multi-label learning (PML) addresses the challenging scenario where training instances have candidate label sets containing both relevant and irrelevant labels, with false positives being the primary noise source. Current PML research predominantly focuses on label disambiguation—identifying ground-truth labels from noisy candidate sets. Existing disambiguation methods employ diverse techniques: matrix decomposition approaches separate ground-truth from noisy labels using low-rank and sparse decomposition [16]; confidence-based methods estimate label credibility through propagation or enhancement [10, 24, 32]; feature-driven approaches identify noise by imposing correlation or manifold constraints [3, 9, 20, 23, 28]. Recent advances include feature selection for disambiguation [6, 8, 36], label correlation and class prototype exploitation [5, 17, 21, 34], and deep learning for noise reduction [7, 13, 26].

3. Proposed Method In this section, we specifically introduce WSC-PML and its feasibility optimization. Let us first define some common variables as: X = [x1 , x2 , · · · , xn ] ∈ Rd×n denotes the feature matrix of n instances with d-dimensional features. Y = [y1 , y2 , · · · , yn ]⊤ ∈ {0, 1}n×q represents the candidate label matrix with noisy information, where q is the number of label classes. The training dataset is defined as D = {(xi , yi )|1 ≤ i ≤ n}, containing n labeled instances. If yij = 1, then the j-th label is associated with the i-th instance; if yij = 0, the association does not exist. Each instance corresponds to a set of candidate labels where unre-

Figure 2. The framework of WSC-PML

lated labels are incorrectly labeled as ”1”, which are called noisy labels. The goal of PML is to minimize the impact of noisy information to make correct multi-label predictions. Our WSC-PML method consists of three main stages: 1. Initial Prototype Learning with Noisy Labels: We perform clustering using noisy candidate labels to obtain initial positive and negative class prototypes. 2. Weak Supervision Signal Construction: We construct reliable weak supervision signals by evaluating label reliability through prototype-based distance comparison. 3. Weakly-Supervised Clustering and classification: We perform weakly-supervised clustering that jointly optimizes pseudo-labels and class prototypes, followed by final classifier training. The flowchart of WSC-PML is shown in Figure 2.

3.1. Stage 1: Initial Prototype Learning In the first stage, we utilize the noisy candidate label matrix Y to learn initial class prototypes. Despite the presence of noise, the candidate labels still contain valuable information about the underlying label structure. We formulate this as a weighted clustering problem:

min M

q n X X i=1 j=1

yij uij ∥xi − mj ∥22 , where uij = Pq

k=1 yik

, (1)

where M = [m1 , m2 , · · · , mq ] represents the matrix of class prototypes, and uij denotes the membership weight of instance i to class j. The optimal solution for each class

prototype can be derived analytically: Pn k=1 ukj xk mj = C(X, uj ) = P , n k=1 ukj

∀1 ≤ j ≤ q,

(2)

where C(·, ·) denotes the centroid calculation function. This formula computes the weighted average of all instances associated with class j according to the candidate labels. Simultaneously, we construct negative class prototypes to capture the distributional characteristics of instances that are not associated with each class: (1 − yij ) m̃j = C(X, ũj ), where ũij = Pq . k=1 (1 − yik )

(3)

The negative prototypes m̃j represent centroids of instances not associated with class j, enabling distinction between relevant and irrelevant label assignments.

3.2. Stage 2: Weak Supervision Signal Construction In the second stage, we construct reliable weak supervision signals to guide the subsequent weakly-supervised clustering. Due to PML characteristics where false positive labels are the main noise source while negative labels are generally reliable, our construction only focuses on positive labels. The core principle for construction lies in leveraging the prototype-based distance comparison from Stage 1. We assume that true positive instances should be closer to positive prototypes than to negative prototypes, while noisy labels (false positives) are more likely to be closer to negative prototypes. Based on this insight, we construct a confidence

matrix B ∈ [0, 1]n×q that quantifies the supervision reliability: ( 1, if yij = 1 and dis (xi , mj ) < dis (xi , m̃j ) , Bij = θi , if yij = 1 and dis (xi , mj ) ≥ dis (xi , m̃j ) (4) where dis(·, ·) denotes the Euclidean distance. Positive instances closer to positive prototypes receive full confidence (Bij = 1), while those closer to negative prototypes receive reduced confidence θi ∈ (0, 1). We adopt an adaptive confidence parameter: ∥yi ∥1 . θi = 1 − q

(5)

This reflects that instances with more candidate labels are more likely to contain noise, thus receiving weaker supervision signals. The confidence matrix B serves as weak supervision signal guiding our clustering framework toward reliable assignments.

3.3. Stage 3: Weakly-Supervised Clustering In the third stage, we perform weakly-supervised clustering using supervision signals from Stage 2. We begin with a general framework and adapt it for PML characteristics to achieve effective noise correction while maintaining clustering quality. We first establish a general weaklysupervised clustering objective incorporating weak supervision from Y: q n X X min {aij ∥xi − oj ∥22 − λBij uij ln(aij )}, O,A≥0,A1q =1n

(6) where A ∈ [0, 1]n×q represents the membership matrix, O denotes class prototypes, and uij refers to the Stage 1. The first term enforces feature-based clustering, while the second term provides confidence-weighted weak supervision. However, the constraint A1q = 1n forces each row to sum to one, creating numerical conflicts in multi-label scenarios. For instance, true labels [1,1,0] become membership values [0.57, 0.43, 0], significantly reducing label intensities. To address this, we decompose A into two components: s.t. 0 ≤ fij ≤ yij , ∀i, j,

(7)

where Π ∈ [0, 1]n×q is the refined membership matrix and F ∈ [0, 1]n×q is the pseudo-labels matrix. This preserves label intensities in F while maintaining clustering constraints via Π. The first component of Eq. (6) is changed to: q q n X n X X X min πij fij ∥xi − oj ∥22 + α πij |fij − yij |2 Π,F,O

s.t.

i=1 j=1

min F

q n X X

−Bij yij ln(fij ), s.t. 0 ≤ fij ≤ yij , ∀i, j. (9)

i=1 j=1

Finally, we integrate these two components to obtain the final WSC-PML framework: q n X X

min

Π,F,O

πij fij ∥xi − oj ∥22 + α

i=1 j=1

−β

q n X X

q n X X

πij |fij − yij |2

i=1 j=1

Bij yij ln(fij )

i=1 j=1

s.t.

0n×q ≤ F ≤ Y, Π ≥ 0, (Π ⊙ F∗ )1q = 1n ,

(10) where parameters α and β control the trade-off between label consistency and confidence-guided supervision. 3.3.1. Final Classification After obtaining the refined pseudo-labels F, we train a neural network classifier using the training dataset D = {(xi , yi )|1 ≤ i ≤ n} and F: min Ltrain (D, F; Θ, Ψ) Θ,Ψ

q n (11) 1 XX H(fz , yz , s(t(xz , θk ), ψk )), =− n z=1 k=1

i=1 j=1

A = Π ⊙ F,

The first term enforces feature-based clustering quality, while the second provides weak supervision through label consistency. F∗ represents the replication value of F. For the second component of Eq. (6), we develop it to:

i=1 j=1

0n×q ≤ F ≤ Y, Π ≥ 0, (Π ⊙ F∗ )1q = 1n . (8)

where t(a; θ) = tanh(wa + b) and s(a; ψ) = sigmoid(w′ a + b′ ) with parameter sets θ = {w, b}, ψ = {w′ , b′ }, Θ = {θk }qk=1 and Ψ = {ψk }qk=1 . The hybrid loss function H(f, y, p) = f ln(p)+(1−y) ln(1−p) uses refined pseudo-labels f for positive samples and original candidate labels y for negative samples, effectively addressing PML’s asymmetric noise characteristics. For test instances x∗ , predictions are obtained via p∗ = s(t(x∗ , Θ), Ψ).

3.4. Optimization Algorithm The optimization of Equation (10) is non-convex due to the coupling between variables Π, F, and O. We adopt an alternating minimization approach: Updating O (Class Prototypes) With fixed Π and F, the optimal class prototypes can be computed as: Pn πij fij xi oj = Pi=1 , j = 1, 2, . . . , q. (12) n i=1 πij fij Updating F (Pseudo-Labels) With fixed Π and O, the pseudo-label update involves solving a constrained optimization problem for each element

fij . Following the objective function, the sub-problem for each fij becomes: min πij fij ∥xi − oj ∥22 + απij (fij − yij )2 − βBij yij ln(fij ), fij

(13) where, subject to 0 ≤ fij ≤ yij . Taking the derivative with respect to fij and setting it to zero, we obtain: πij ∥xi − oj ∥22 + 2απij (fij − yij ) − βBij yij

1 = 0. (14) fij

Multiplying through by fij and rearranging: 2 2απij fij + (πij ∥xi − oj ∥22 − 2απij yij )fij − βBij yij = 0 (15) This quadratic equation in fij has the solution: p −(a1 ) + a21 − 4a0 a2 ˆ , (16) fij = 2a0

where a0 = 2απij , a1 = πij ∥xi − oj ∥22 − 2απij yij , and a2 = −βBij yij . We take the positive root which is guaranteed to be positive due to the signs of a0 > 0 and a2 < 0. The final solution is obtained by projecting this value onto the feasible region [0, yij ]:    fij = max 0, min yij , fˆij . (17) Updating Π (Membership Matrix) When let F∗ = F and fixing O, the objective reduces to: min Π

q n X X

πij dij ,

s.t.

i=1 j=1

q X

∗ πij fij = 1,

πij ≥ 0,

j=1

(18) where dij = fij ∥xi − oj ∥22 + α|fij − yij |2 . Using Lagrange multipliers with multiplier λi , we get λi fij ∂L ∂πij = dij − λi fij = 0, yielding πij = dij . From the Pq constraint j=1 πij fij = 1, we obtain: fij /dij , k=1 fik /dik

πij = Pq

∀i, j.

(19)

4. Experiments 4.1. Experimental Setup 4.1.1. Datasets. To evaluate our proposed WSC-PML method, we conduct experiments across 24 datasets: 6 real-world PML datasets and 18 synthetic ones. Table 1 summarizes the characteristics of all datasets, including the number of instances (#Instances), dimensionality of feature space (#Dims), number of class labels (#Labels), average number of candidate labels (Avg.#CLs), and average number

Algorithm 1 WSC-PML Algorithm Input: Feature matrix X ∈ Rd×n , candidate label matrix Y ∈ {0, 1}n×q , parameters α, β. Output: Trained classifier and pseudo-labels F 1: Stage 1: Initial Prototype Learning 2: for j = 1 to q do 3: Compute prototype: mj and m̃j with Eq. (2) and (3) 4: end for 5: Stage 2: Weak Supervision Signal Construction 6: for i = 1 to n do 7: for j = 1 to q do 8: if yij = 1 and ∥xi − mj ∥2 < ∥xi − m̃j ∥2 then 9: Bij = 1 10: else 11: Bij = θi = 1 − ∥yqi ∥1 12: end if 13: end for 14: end for 15: Stage 3: Weakly-Supervised Clustering (0) 16: Initialize F(0) = Y, O(0) = M, Π =U 17: for t = 1 to Tmax do 18: Update O(t) using Equation (12) 19: Update F(t) using Equation (17) 20: Update Π(t) using Equation (19) 21: if convergence criterion met then 22: break 23: end if 24: end for 25: Stage 4: Classification Training 26: Train neural network using D and F with Equation (11) 27: return Trained classifier parameters Θ and Ψ.

of ground-truth labels (Avg.#GLs). Specifically, the 6 real-world datasets include Mirflickr, Music emotion, Music style, YeastBP, YeastCC, and YeastMF 1 . For the synthetic datasets, we generate 18 PML datasets from 6 multilabel datasets (emotions, birds, medical, image, yeast, and corel5k 2 ) by systematically adding false positive labels. For example, in the emotions dataset, ground-truth labels average 1.86 (Avg.#GLs) per instance, while after noise addition, candidate labels average 4 (Avg.#CLs), resulting in approximately 2.14 noise labels per instance. This diverse collection of synthetic datasets with varying noise levels facilitates comprehensive evaluation. 4.1.2. Comparison methods. For comparative analysis, we implemented six established benchmark methods. A brief description of each comparison algorithm is provided below: 1 http://palm.seu.edu.cn/zhangml/ 2 http://mulan.sourceforge.net/datasets.html

Table 1. The basic information of the experimental dataset. The first six are real-world PML datasets, and the last six are MLL datasets used to generate synthetic PML datasets. Datsets Mirflickr Music emotion Music style YeastBP YeastCC YeastMF emotions birds medical image yeast corel5k

#Instances 10433 6833 6839 6139 6139 6139 593 645 978 2000 2417 5000

#Dims 100 98 98 6139 6139 6139 72 260 1449 294 103 499

#Labels 7 11 10 217 50 39 6 19 45 5 14 374

Avg.#CLs 3.35 5.29 6.04 5.93 1.39 1.04 3, 4, 5 3, 4, 5 5, 7, 9 2, 3, 4 7, 9, 11 7, 9, 11

Avg.#GLs 1.77 2.42 1.44 5.54 1.35 1.01 1.86 1.01 1.25 1.23 4.24 3.52

• FBD-PML [5]: A PML method that assists disambiguation through dual-class prototypes in both feature and label spaces, and employs manifold embedding to maintain structural consistency. • PML-LENFN [2]: A two-stage PML method that utilizes both near and far neighbor information to improve label consistency, while incorporating nonlinear properties to enhance the classifier. • NLR [27]: A PML method that constructs positive and negative dual classifiers using non-candidate labels to assist in noisy label selection. • PAMB [11]: A two-stage PML technique that employs ECOC for the generation of binary label sets and applies loss-weighted predictions to handle unseen instances effectively. • PML-NI [23]: A PML method proposed for truth label prediction and noise label recognition by decomposing the prediction model matrix into independent components. • PML-fp [22]: A PML method that utilizes feature prototype learning to assign confidence scores to each label and designs corresponding weighted ranking loss functions. All comparison methods use parameters following the recommended settings from their respective papers. In our WSC-PML method, α and β are searched in {10−2 , 10−1 , 100 , 101 , 102 }. For fair comparison, we apply 10-fold cross-validation on all datasets and report the mean performance and standard deviation for all methods. 4.1.3. Evaluation Metrics In our experiment, we evaluate the performance of WSCPML and other state-of-the-art baselines using five multilabel metrics: Hamming loss, Ranking loss, One-error, Coverage, and Average precision. For the first four metrics, lower values indicate better performance, while higher values are preferred for Average Precision. Detailed definitions on these metrics can be found in [33].

4.2. Experimental results Due to space limitations, we present detailed experimental results for only two evaluation metrics: Average precision and Ranking loss, as shown in Tables 2 and 4. To evaluate statistical significance across all five metrics, we conducted the Friedman test followed by the Nemenyi post-hoc test [4]. The Friedman test is a non-parametric test for detecting performance differences across multiple datasets. As shown in Table 3, all Friedman statistics FF significantly exceed the critical value (1.8386) at 0.05 significance level. The Nemenyi test is employed to assess statistical significance of performance differences, with WSC-PML designated as the control method. The difference in average rankings is evaluated using the Critical Difference (CD). Performance differences exceeding the CD value are considered statistically significant. Figure 3 presents CD diagrams for all five metrics, with WSC-PML (highlighted in red) serving as the control method. Methods whose performance differences do not exceed the CD threshold are connected by blue lines, indicating no statistically significant difference. Through comprehensive analysis of all experimental results, we derive the following key observations: • Superior Overall Performance: Across all evaluation metrics and 24 datasets, WSC-PML achieved the best performance in 82.50% of cases. This stems from our threestage framework that transforms noisy candidate labels into valuable weak supervision signals, enabling effective exploitation of data structure for simultaneous clustering and denoising. • Statistical Significance: Tables 2, 4 and Figure 3 demonstrate WSC-PML’s significant advantage, consistently maintaining the lowest average ranking across all metrics with few methods connected at the CD threshold. This superior performance results from our confidence-weighted weak supervision integrated with unsupervised clustering principles. • Advantage over Prototype-based Methods: Although FBD-PML and PML-fp also utilize prototype learning, WSC-PML significantly outperforms them. The key advantage lies in our membership matrix decomposition A = Π ⊙ F that explicitly addresses the numerical conflict between clustering membership constraints and multi-label scenarios. While existing methods struggle with membership-label intensity conflicts, our decomposition preserves label intensities while maintaining clustering constraints, enabling more effective label disambiguation.

4.3. Further Analysis 4.3.1. Parameter Sensitivity Analysis. To evaluate the robustness of WSC-PML with respect to hyperparameters α and β, we conducted compre-

Table 2. The predictive performance of each comparison method on Averge precision (mean±std), where the best performance (the larger the better) is shown in boldface. Data Set Mirflickr Music emotion Music style YeastBP YeastCC YeastMF emotions

birds

medical

image

yeast

corel5k

Avg#CLS 3.35 5.29 6.04 5.93 1.39 1.04 3 4 5 3 4 5 5 7 9 2 3 4 7 9 11 7 9 11

WSC-PML 0.821±0.008 0.649±0.012 0.746±0.014 0.436±0.018 0.608±0.025 0.490±0.028 0.805±0.039 0.791±0.029 0.756±0.034 0.629±0.059 0.597±0.050 0.592±0.054 0.875±0.031 0.860±0.030 0.844±0.031 0.814±0.020 0.792±0.019 0.754±0.022 0.758±0.019 0.750±0.019 0.739±0.015 0.306±0.012 0.301±0.012 0.295±0.011

FBD-PML 0.786±0.009 0.604±0.013 0.738±0.015 0.342±0.019 0.576±0.025 0.456±0.031 0.776±0.034 0.762±0.034 0.698±0.038 0.625±0.061 0.576±0.045 0.568±0.029 0.850±0.025 0.821±0.031 0.786±0.036 0.775±0.021 0.743±0.026 0.669±0.015 0.749±0.019 0.733±0.016 0.702±0.013 0.276±0.013 0.269±0.013 0.263±0.012

PML-LENFN 0.798±0.007 0.610±0.012 0.731±0.016 0.404±0.015 0.598±0.013 0.480±0.012 0.781±0.033 0.768±0.028 0.704±0.031 0.627±0.061 0.581±0.048 0.570±0.025 0.848±0.026 0.826±0.034 0.807±0.029 0.780±0.024 0.747±0.029 0.671±0.018 0.753±0.018 0.740±0.017 0.721±0.016 0.279±0.013 0.271±0.013 0.264±0.013

NLR 0.786±0.008 0.610±0.012 0.739±0.016 0.401±0.022 0.569±0.027 0.470±0.021 0.780±0.030 0.740±0.032 0.670±0.040 0.626±0.067 0.575±0.039 0.558±0.031 0.836±0.029 0.785±0.034 0.735±0.043 0.772±0.022 0.724±0.025 0.648±0.012 0.742±0.017 0.719±0.017 0.686±0.015 0.275±0.015 0.273±0.015 0.270±0.014

6

5

4

3

NLR PML-fp FBD-PML PML-NI

2

7

1 WSC-PML PML-LENFN PAMB

6

6

5

4

3

2

WSC-PML PML-LENFN FBD-PML

(b) ranking loss CD=1.8386

5

4

3

2

7

1 WSC-PML PML-LENFN FBD-PML

PML-fp NLR PML-NI PAMB

PML-fp 0.792±0.005 0.435±0.093 0.472±0.200 0.286±0.009 0.360±0.020 0.359±0.015 0.675±0.005 0.581±0.003 0.563±0.002 0.424±0.004 0.418±0.001 0.457±0.023 0.797±0.002 0.846±0.011 0.815±0.016 0.672±0.007 0.688±0.009 0.573±0.019 0.736±0.005 0.727±0.020 0.700±0.003 0.284±0.003 0.201±0.001 0.201±0.000

1

NLR PML-fp PML-NI PAMB

(a) hamming loss CD=1.8386 7

PML-NI 0.786±0.009 0.608±0.012 0.739±0.015 0.404±0.022 0.452±0.026 0.417±0.013 0.777±0.028 0.749±0.034 0.680±0.039 0.617±0.057 0.572±0.041 0.564±0.034 0.835±0.024 0.791±0.036 0.748±0.040 0.770±0.020 0.732±0.024 0.653±0.011 0.746±0.017 0.725±0.016 0.692±0.013 0.280±0.014 0.273±0.013 0.265±0.013

CD=1.8386

CD=1.8386 7

PAMB 0.807±0.051 0.626±0.011 0.741±0.007 0.356±0.022 0.559±0.022 0.407±0.011 0.810±0.017 0.783±0.036 0.750±0.028 0.589±0.052 0.564±0.044 0.495±0.029 0.776±0.020 0.751±0.029 0.721±0.017 0.798±0.024 0.748±0.019 0.711±0.026 0.756±0.014 0.748±0.013 0.741±0.012 0.240±0.019 0.229±0.011 0.227±0.018

6

CD=1.8386 5

4

3

NLR PML-fp PML-NI PAMB

(c) one error

2

1

7 WSC-PML PML-LENFN FBD-PML

6

5

4

3

2

(d) coverage

1 WSC-PML PML-LENFN PAMB

PML-fp PML-NI NLR FBD-PML

(e) average precision

Figure 3. Results of PML-MA against other approaches with the Nemenyi test(CD = 2.1934 at 0.05 significance level).

Table 3. Friedman Statistics FF for Each Evaluation Metric at 0.05 Significance Level (7 Algorithms and 24 Datasets).

Evaluayion metric Haming loss Ranking loss One-error Coverage Average Precise

FF 25.4261 22.0066 16.2616 23.0114 26.7644

Critical value

1.8386

hensive parameter sensitivity analysis on representative datasets. Figure 4 illustrates the effect of different parameter combinations on Average Precision for Music emotion and birds datasets, with both parameters varying in {10−2 , 10−1 , 100 , 101 , 102 }. The results demonstrate

that WSC-PML achieves optimal performance when both α and β are in moderate ranges (approximately 10−1 to 101 ), indicating that balanced trade-offs between label consistency and confidence-guided supervision are crucial. Moreover, the extensive high-performance regions (yellow-red areas) across both datasets reveal that our method maintains stable performance over a wide range of parameter combinations, with performance degradation occurring only at extreme values where either supervision signal becomes overly dominant. 4.3.2. Ablation Analysis. To validate the effectiveness of key components in WSCPML, we conduct ablation studies by systematically removing critical modules on four representative datasets (Mirflickr, Music emotion, birds, and image):

Table 4. The predictive performance of each comparison method on Ranking loss (mean±std), where the best performance (the smaller the better) is shown in boldface. Data Set Mirflickr Music emotion Music style yeastBP YeastCC YeastMF emotions

birds

medical

image

yeast

corel5k

Avg#CLS 3.35 5.29 6.04 5.93 1.39 1.04 3 4 5 3 4 5 5 7 9 2 3 4 7 9 11 7 9 11

WSC-PML 0.110±0.006 0.224±0.009 0.132±0.011 0.199±0.009 0.156±0.016 0.209±0.019 0.164±0.035 0.169±0.029 0.204±0.029 0.172±0.026 0.195±0.041 0.197±0.037 0.030±0.012 0.033±0.010 0.039±0.013 0.152±0.018 0.173±0.020 0.205±0.018 0.173±0.013 0.180±0.016 0.192±0.013 0.184±0.008 0.192±0.008 0.197±0.007

FBD-PML 0.124±0.005 0.247±0.009 0.137±0.011 0.251±0.009 0.182±0.020 0.245±0.022 0.187±0.032 0.199±0.029 0.260±0.037 0.173±0.031 0.194±0.031 0.207±0.031 0.036±0.013 0.045±0.014 0.052±0.014 0.187±0.019 0.219±0.023 0.287±0.014 0.181±0.013 0.197±0.016 0.223±0.013 0.221±0.010 0.227±0.009 0.232±0.008

PML-LENFN 0.118±0.005 0.246±0.009 0.138±0.010 0.226±0.011 0.178±0.021 0.235±0.020 0.180±0.031 0.192±0.027 0.249±0.030 0.174±0.033 0.197±0.032 0.204±0.036 0.036±0.013 0.043±0.014 0.049±0.014 0.188±0.023 0.212±0.026 0.285±0.017 0.178±0.012 0.190±0.016 0.209±0.014 0.217±0.008 0.224±0.008 0.230±0.007

NLR 0.127±0.006 0.248±0.008 0.138±0.010 0.228±0.011 0.189±0.020 0.239±0.012 0.185±0.033 0.217±0.027 0.288±0.040 0.183±0.035 0.202±0.029 0.220±0.037 0.039±0.012 0.052±0.014 0.063±0.015 0.191±0.020 0.235±0.023 0.309±0.012 0.186±0.012 0.207±0.016 0.235±0.014 0.241±0.010 0.246±0.010 0.249±0.010

PAMB 0.112±0.038 0.234±0.007 0.135±0.005 0.230±0.011 0.187±0.026 0.253±0.025 0.160±0.021 0.177±0.032 0.203±0.025 0.196±0.042 0.204±0.028 0.229±0.025 0.080±0.021 0.091±0.022 0.104±0.020 0.177±0.022 0.217±0.015 0.255±0.025 0.214±0.008 0.211±0.007 0.217±0.008 0.222±0.009 0.229±0.009 0.235±0.009

PML-NI 0.126±0.007 0.246±0.008 0.137±0.010 0.220±0.011 0.193±0.028 0.247±0.031 0.188±0.029 0.211±0.027 0.276±0.039 0.177±0.033 0.205±0.034 0.219±0.036 0.040±0.012 0.052±0.013 0.061±0.015 0.194±0.019 0.230±0.024 0.303±0.010 0.184±0.012 0.202±0.016 0.231±0.014 0.215±0.008 0.223±0.008 0.229±0.007

PML-fp 0.124±0.003 0.458±0.114 0.445±0.231 0.269±0.012 0.187±0.023 0.249±0.024 0.293±0.015 0.407±0.014 0.419±0.004 0.271±0.005 0.279±0.024 0.271±0.010 0.050±0.002 0.040±0.006 0.052±0.004 0.282±0.011 0.265±0.009 0.380±0.017 0.185±0.003 0.196±0.017 0.219±0.004 0.173±0.005 0.180±0.003 0.181±0.004

Table 5. Ablation study results. Comparison of performance with and without each module, in metric Average precision. The best experimental performance is shown in boldface.

AP ↑ Mirflickr Music emotion birds (5) image (3)

NC 0.800±0.012 0.624±0.013 0.584±0.057 0.758±0.018

ND 0.811±0.012 0.627±0.015 0.593±0.044 0.781±0.017

NWS 0.815±0.009 0.637±0.019 0.596±0.051 0.786±0.026

Full 0.821±0.008 0.649±0.012 0.597±0.050 0.792±0.019

• NWS (No P Weak P Supervision): Removes the weak supern q vision −β i=1 j=1 Bij yij ln(fij ) • Full: Complete method with all components.

(a) Music eomtion

(b) birds (Avg.#CLs = 4)

Figure 4. Parameter Sensitivity Analysis of α and β on Mirflickr and birds Datasets

• NC (No Clustering): Removes clustering and only classify using candidate labels. • ND (No Decomposition): Removes membership matrix decomposition A = Π ⊙ F, using Eq. (6).

As shown in Table 5, the complete WSC-PML achieves the best performance across all datasets, demonstrating synergistic effects among components. NC shows the poorest performance, confirming clustering’s essential role in exploiting data structure for label disambiguation. ND exhibits significant degradation, particularly on high-noise datasets, validating that membership matrix decomposition is crucial for handling multi-label numerical conflicts. NWS outperforms NC and ND but falls short of the full method, indicating weak supervision provides valuable refinement. These results confirm that each component contributes meaningfully to the framework, with clustering being fundamental, decomposition being critical for multi-

label learning, and weak supervision providing additional performance gains. 4.3.3. Complexity Analysis. The time complexity of WSC-PML is O(T · nqd), where T is the number of iterations. Each iteration involves updating class prototypes O with O(nqd), F with O(nq), and Π with O(nq). The space complexity is O(nd + nq) for storing matrices. In practice, WSC-PML converges within 10-20 iterations on most datasets, making it computationally efficient and scalable to large-scale multi-label learning problems.

5. Conclusion This paper successfully bridges clustering and multi-label learning to address label noise in partial multi-label learning. We resolved the fundamental incompatibility between clustering and multi-label learning by decomposing the membership matrix A = Π ⊙ F, where Π maintains clustering constraints while F preserves multi-label characteristics. Our WSC-PML method enables effective integration of unsupervised clustering with multi-label supervision through a three-stage framework. Extensive experiments demonstrate consistent superiority over state-of-theart methods. This work transforms clustering and label denoising from separate processes into a unified framework, opening new possibilities for structure-aware multi-label learning. Future work will explore extending our framework to handle more complex noise patterns and investigating applications to other challenging learning scenarios with noisy supervision.

References [1] Matthew R Boutell, Jiebo Luo, Xipeng Shen, and Christopher M Brown. Learning multi-label scene classification. Pattern recognition, 37(9):1757–1771, 2004. 2 [2] Yu Chen, Yanan Wu, Na Han, Xiaozhao Fang, Bingzhi Chen, and Jie Wen. Partial multi-label learning based on near-far neighborhood label enhancement and nonlinear guidance. In Proceedings of the 32nd ACM International Conference on Multimedia, pages 3722–3731, 2024. 2, 6 [3] Yu Chen, Fang Li, Na Han, Guanbin Li, Hongbo Gao, Sixian Chan, and Xiaozhao Fang. Pseudo-label reconstruction for partial multi-label learning. In Proceedings of the ThirtyFourth International Joint Conference on Artificial Intelligence, IJCAI-25, pages 4896–4904, 2025. 2 [4] Janez Demšar. Statistical comparisons of classifiers over multiple data sets. The Journal of Machine learning research, 7:1–30, 2006. 6 [5] Xiaozhao Fang, Xi Hu, Yan Hu, Yonghao Chen, Shengli Xie, and Na Han. Fuzzy bifocal disambiguation for partial multilabel learning. Neural Networks, 185:107137, 2025. 2, 6

[6] Qingqi Han, Liang Hu, and Wanfu Gao. Integrating label confidence-based feature selection for partial multi-label learning. Pattern Recognition, 161:111281, 2025. 2 [7] Jun-Yi Hang and Min-Ling Zhang. Partial multi-label learning with probabilistic graphical disambiguation. Advances in Neural Information Processing Systems, 36:1339–1351, 2023. 2 [8] Pingting Hao, Liang Hu, and Wanfu Gao. Partial multi-label feature selection via subspace optimization. Information Sciences, 648:119556, 2023. 2 [9] Yan Hu, Xiaozhao Fang, Peipei Kang, Yonghao Chen, Yuting Fang, and Shengli Xie. Dual noise elimination and dynamic label correlation guided partial multi-label learning. IEEE Transactions on Multimedia, 2023. 2 [10] Yaojin Lin, Yulin Li, Shidong Lin, Lei Guo, and Yu Mao. Partial multi-label feature selection based on label distribution learning. Pattern Recognition, 164:111523, 2025. 2 [11] Bing-Qing Liu, Bin-Bin Jia, and Min-Ling Zhang. Towards enabling binary decomposition for partial multi-label learning. IEEE transactions on pattern analysis and machine intelligence, 2023. 6 [12] Weiwei Liu, Haobo Wang, Xiaobo Shen, and Ivor W Tsang. The emerging trends of multi-label learning. IEEE transactions on pattern analysis and machine intelligence, 44(11): 7955–7974, 2021. 1 [13] Wenbin Qian, Yanqiang Tu, Jintao Huang, Wenhao Shu, and Yiu-Ming Cheung. Partial multilabel learning using noisetolerant broad learning system with label enhancement and dimensionality reduction. IEEE Transactions on Neural Networks and Learning Systems, 2024. 2 [14] Jesse Read, Bernhard Pfahringer, Geoff Holmes, and Eibe Frank. Classifier chains for multi-label classification. Machine learning, 85:333–359, 2011. 2 [15] Chongjie Si, Yuheng Jia, Ran Wang, Min-Ling Zhang, Yanghe Feng, and Chongxiao Qu. Multi-label classification with high-rank and high-order label correlations. IEEE Transactions on Knowledge and Data Engineering, 36(8): 4076–4088, 2023. 2 [16] Lijuan Sun, Songhe Feng, Tao Wang, Congyan Lang, and Yi Jin. Partial multi-label learning by low-rank and sparse decomposition. In Proceedings of the AAAI conference on artificial intelligence, pages 5016–5023, 2019. 2 [17] Lijuan Sun, Songhe Feng, Jun Liu, Gengyu Lyu, and Congyan Lang. Global-local label correlation for partial multilabel learning. IEEE Transactions on Multimedia, 24:581– 593, 2021. 2 [18] Shahab Tahzeeb and Shehzad Hasan. A neural networkbased multi-label classifier for protein function prediction. Engineering, Technology & Applied Science Research, 12 (1):7974–7981, 2022. 1 [19] Deng-Bao Wang, Li Li, and Min-Ling Zhang. Adaptive graph guided disambiguation for partial label learning. In Proceedings of the 25th ACM SIGKDD international conference on knowledge discovery & data mining, pages 83–91, 2019. 2 [20] Haobo Wang, Weiwei Liu, Yang Zhao, Chen Zhang, Tianlei Hu, and Gang Chen. Discriminative and correlative partial multi-label learning. In IJCAI, pages 3691–3697, 2019. 2

[21] Ke Wang, Yahu Guan, Yunyu Xie, Zhaohong Jia, Hong Ye, Zhangling Duan, and Dong Liang. Partial multi-label learning with label and classifier correlations. Information Sciences, 712:122101, 2025. 2 [22] Ming-Kun Xie and Sheng-Jun Huang. Partial multi-label learning. In Proceedings of the AAAI conference on artificial intelligence, pages 4302–4309, 2018. 1, 6 [23] Ming-Kun Xie and Sheng-Jun Huang. Partial multi-label learning with noisy label identification. IEEE Transactions on Pattern Analysis and Machine Intelligence, 44(7):3676– 3687, 2021. 2, 6 [24] Ning Xu, Yun-Peng Liu, and Xin Geng. Partial multilabel learning with label distribution. In Proceedings of the AAAI conference on artificial intelligence, pages 6510–6517, 2020. 2 [25] Ning Xu, Congyu Qiao, Yuchen Zhao, Xin Geng, and MinLing Zhang. Variational label enhancement for instancedependent partial label learning. IEEE Transactions on Pattern Analysis and Machine Intelligence, 2024. 2 [26] Yan Yan and Yuhong Guo. Adversarial partial multi-label learning with label disambiguation. In Proceedings of the AAAI Conference on Artificial Intelligence, pages 10568– 10576, 2021. 2 [27] Fuchao Yang, Yuheng Jia, Hui Liu, Yongqiang Dong, and Junhui Hou. Noisy label removal for partial multi-label learning. In Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and Data Mining, pages 3724–3735, 2024. 2, 6 [28] Guoxian Yu, Xia Chen, Carlotta Domeniconi, Jun Wang, Zhao Li, Zili Zhang, and Xindong Wu. Feature-induced partial multi-label learning. In 2018 IEEE international conference on data mining (ICDM), pages 1398–1403. IEEE, 2018. 2 [29] Xiang-Ru Yu, Deng-Bao Wang, and Min-Ling Zhang. Dimensionality reduction for partial label learning: A unified and adaptive approach. IEEE Transactions on Knowledge and Data Engineering, 2024. 2 [30] Jia Zhang, Zhiming Luo, Candong Li, Changen Zhou, and Shaozi Li. Manifold regularized discriminative feature selection for multi-label learning. Pattern Recognition, 95:136– 150, 2019. 2 [31] Jun Zhang, Yubin Li, Fanfan Shen, Yueshun He, Hai Tan, and Yanxiang He. Hierarchical text classification with multilabel contrastive learning and knn. Neurocomputing, 577: 127323, 2024. 1 [32] Min-Ling Zhang and Jun-Peng Fang. Partial multi-label learning via credible label elicitation. IEEE Transactions on Pattern Analysis and Machine Intelligence, 43(10):3587– 3599, 2020. 2 [33] Min-Ling Zhang and Zhi-Hua Zhou. A review on multi-label learning algorithms. IEEE transactions on knowledge and data engineering, 26(8):1819–1837, 2013. 6 [34] Peng Zhao, Shiyi Zhao, Xuyang Zhao, Huiting Liu, and Xia Ji. Partial multi-label learning based on sparse asymmetric label correlations. Knowledge-Based Systems, 245:108601, 2022. 2

[35] Tianna Zhao, Yuanjian Zhang, and Witold Pedrycz. Robust multi-label classification with enhanced global and local label correlation. Mathematics, 10(11):1871, 2022. 2 [36] Yizhang Zou, Xuegang Hu, Peipei Li, and Yuhang Ge. Learning shared and non-redundant label-specific features for partial multi-label classification. Information Sciences, 656:119917, 2024. 2

Record · ID 5969 · SHA-256 66e7ad05c2702ab4
Conceptio Open Knowledge Archive — every document is proof-bundled with source, license, and retrieval metadata.