Pith. sign in

REVIEW 3 major objections 5 minor 49 references

Multi-view Granular-ball Contrastive Clustering

T0 review · 3 major / 5 minor · reviewed 2026-08-11 · deepseek-v4-flash

Pith's one-line read Multi-view contrastive clustering works better when the contrast units are granular balls—compact local groups of samples—rather than individual instances, and the paper supports this with strong results on seven benchmarks.

desk verdict Granular-ball contrastive clustering has a promising intermediate-scale idea, but Eq. (12) is missing its negative sign and log, so the printed loss repels associated balls and attracts unrelated ones, inverting the paper's central claim. read the letter →

arxiv 2412.13550 v2 pith:MMUAGX4R submitted 2024-12-18 cs.LG

classification cs.LG
keywords multi-viewclusteringcontrastivelearninggranular-ballcomputingdeeprepresentationunsupervisedlocalstructure
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper argues that multi-view contrastive clustering should operate at an intermediate scale between individual instances and whole clusters: on 'granular balls,' or compact groups of similar samples. The authors propose MGBCC, a deep clustering method that first constructs these balls in each view's learned latent space, then links balls within a view if they overlap and across views if they share enough of the same samples. A contrastive loss then pulls linked balls together and pushes unlinked balls apart, so the shared representation learns both local topology and cross-view agreement. On seven standard multi-view datasets, the method reports accuracy, normalized mutual information, and purity that are best or second-best in most cases, and it substantially improves on instance-level contrastive baselines such as SURE on three datasets.

What carries the argument

The load-bearing objects are granular balls: local clusters of latent-space representations with a center and radius, obtained by a direct $k$-means partition with a granularity parameter $p$ rather than the classical recursive splitting. The mechanism is a dual-association contrastive step: intra-view associations come from an overlap matrix $A^v$ (two balls overlap if their center distance minus the sum of radii is below a threshold related to their overlap counts), and cross-view associations come from a matrix $P^{(m,n)}$ (two balls in different views are linked if the fraction of common sample indices over the smaller ball's size exceeds $\tau$). These are merged into a unified mask matrix $M$ that feeds a contrastive loss on ball centers, so that the shared latent space preserves within-view topology and cross-view agreement at the ball level.

What would settle it

One can settle the central claim by training MGBCC with the loss exactly as written in Eq. (12) and measuring whether the average cosine similarity between associated granular-ball pairs increases or decreases over training; if it decreases, the stated objective implements the opposite of the claimed contrastive behavior.

Watch

Extended reading notes

Core claim

MGBCC claims that contrastive learning at the granular-ball level yields highly discriminative multi-view representations. Instead of pairing individual samples across views (which creates false negatives) or aligning whole cluster assignments (which ignores local structure), the method segments each view's latent space into a number of granular balls set by a granularity parameter $p$ (roughly $N/p$ balls) via $k$-means, computes intra-view overlap from ball center distances and radii, and computes inter-view overlap from the fraction of shared sample indices. The resulting association masks are combined into a unified mask matrix, and a contrastive loss on ball centers encourages associated balls to attract and unassociated balls to repel in a shared space. The paper demonstrates on BBCSport, Cora, MNIST-USPS, and other benchmarks that this intermediate-scale contrastive objective matches or exceeds state-of-the-art instance-level and cluster-level methods, and an ablation on Caltech101-20 shows granular-ball contrast ($p=2$) far outperforms instance-level contrast ($p=1$) when both are added to the reconstruction loss.

Load-bearing premise

The method relies on the printed contrastive loss actually pulling associated granular balls together and pushing unassociated ones apart, and on the overlap definition being computable rather than circular; if either assumption fails, the claimed feature learning would not follow from the stated objective.

Editorial extensions

If this is right

  • The granular-ball construction can be added to any multi-view contrastive pipeline that uses instance-level negatives, because it only requires computing ball centers and masks from the latent representation.
  • Because negatives are defined between whole balls rather than individual samples, the method reduces the impact of false negative pairs that come from putting two samples of the same class into a negative pair.
  • The granularity parameter $p$ provides a continuous interpolation between instance-level contrast ($p=1$) and cluster-level contrast (large $p$), so a single framework covers both existing regimes.
  • The reported Cora accuracy (65.44%) against the best baseline (49.07%) suggests ball-level contrast is especially effective when views are high-dimensional and sparse.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The same granular-ball idea could be transplanted to single-view contrastive learning, where augmentations of the same image could define ball membership and negative pairs could be drawn from other balls; the paper does not test this, but it follows directly from the mechanism.
  • Because the contrastive loss operates on ball centers rather than all $N$ samples, memory use scales with the number of balls $k$, opening the way to very large datasets when $p$ is chosen moderately; this scaling is not demonstrated in the paper.
  • The parameter $p$ sensitivity suggests an adaptive granularity schedule: starting with large balls early in training and refining to smaller $p$ later could give a curriculum that the paper does not explore.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 5 minor

Summary. The paper proposes MGBCC, a multi-view clustering method that performs contrastive learning at the granular-ball level. Granular balls are formed in each view's latent space via k-means, intra-view associations are defined by a geometric overlap criterion, cross-view associations are defined by the proportion of shared sample indices, and a contrastive loss over granular-ball centers is minimized jointly with reconstruction losses. Experiments on seven multi-view datasets report state-of-the-art or competitive ACC/NMI/PUR, and an ablation on Caltech101-20 is used to argue that granular-ball-level contrastive learning outperforms instance-level contrastive learning.

Significance. If the method were correctly specified, the proposal of an intermediate granularity between instances and clusters for multi-view contrastive learning would be a useful contribution, and the experimental suite is broad. The paper is also among the first to connect granular-ball computing to deep multi-view contrastive clustering. However, the central objective as printed in Eq. (12) does not do what the text claims: minimizing it repels associated granular balls and relatively attracts unrelated ones. Because this equation is the defining mechanism of the method, the theoretical description, the ablation, and the interpretation of the experimental results are not supported as written. The circularity in Eq. (2) further means that the overlap matrix used to build the contrastive mask is not well defined.

major comments (3)
  1. [Granular-ball Contrastive Learning, Eq. (12)] Equation (12) defines the granular-ball contrastive loss as L(m,n) = (1/k) sum_i sum_{j in Omega_i} exp(cos(c_i,c_j)) / sum_{z in Phi_i} exp(cos(c_i,c_z)), with no negative sign and no logarithm. Since every term in the numerator is positive, the partial derivative of the summand with respect to the cosine similarity of an associated pair is exp(cos(c_i,c_j)) / sum_{z in Phi_i} exp(cos(c_i,c_z)) > 0. Gradient descent therefore makes associated granular balls less similar, while the denominator makes non-associated balls relatively more similar. This is exactly the opposite of the objective stated in the text and in Figure 2. As a result, Table 2, Figure 3, and Table 3 cannot be interpreted as evidence for granular-ball contrastive learning unless the actual loss used in the experiments is different from Eq. (12) and is stated explicitly.
  2. [Within-view Granular-ball Generation, Eq. (2)] Equation (2) defines the overlap criterion using omega = min(ri, rj) / min(pi, pj), where pi and pj are described as the total numbers of overlaps with adjacent granular balls for GBi and GBj. Whether two balls overlap is precisely the relation being defined, so pi and pj are not available before the overlap matrix Av is computed. The manuscript provides no fixed-point iteration, initialization rule, or alternative definition. Therefore Av in Eq. (6), the mask M in Eq. (11), and the contrastive loss in Eq. (12) are not well defined for an arbitrary input.
  3. [Ablation Studies, Table 3] The ablation compares Lrec, Lrec + Lcon with p=1, and Lrec + Lcon with p=2, and uses the improvement of the p=2 setting to conclude that granular-ball contrastive learning is effective. This conclusion is load-bearing for the paper's central claim. Because Eq. (12) is not a contrastive objective, the difference between the two settings cannot be attributed to the claimed mechanism. The authors need to specify the actual loss minimized in the experiments and provide the corrected equation; otherwise the ablation cannot support the granular-ball hypothesis.
minor comments (5)
  1. [Methodology heading] The heading contains a typo: 'granular-ball asociation' should be 'granular-ball association'.
  2. [Experimental Results] The text says 'classical multi-view constrastive learning methods'; 'constrastive' should be 'contrastive'.
  3. [Equation (13)] The coefficient in Eq. (13) is rendered as '2 V (V - 1)'; it should be written as 2 / (V(V - 1)) to avoid ambiguity.
  4. [Equation (12)] The sum symbol in Eq. (12) appears as 'P' in the rendering; it should be a proper summation symbol (\sum) over z in Phi_i.
  5. [Implementation Details] For BBCSport and Cora, lambda is set to 0, so the reconstruction loss is disabled; the manuscript should clarify what prevents the encoder from collapsing or drifting when the only loss is the contrastive term.

Circularity Check

1 steps flagged · score 4.0 of 10

One self-referential definition in the overlap matrix, but the central empirical claim is independently grounded.

  1. self definitional [Section 'Within-view Granular-ball Generation', Eq. (2) and Eq. (6)]
    "Two balls are considered overlapping if they satisfy following conditions ∥ci − cj∥2 − (ri + rj) < ω, ω= min(ri, rj) min(pi, pj) . (2) where pi and pj denote the total number of overlaps with adjacent granular balls for GBi and GBj."

    Eq. (6) makes a_ij=1 exactly when Eq. (2) holds, so A^v is defined by whether the ball distance is below a threshold ω. But ω depends on p_i and p_j, which are defined as 'the total number of overlaps with adjacent granular balls' for balls i and j—i.e., the row/column sums of A^v itself. The mask matrix M in Eq. (11) is then built from A^v, so the intra-view association structure driving the contrastive loss is not well-defined as printed: no base case, fixed-point iteration, or existence argument is supplied, and p_i=p_j=0 makes the ratio undefined.

full rationale

The paper's central contribution—granular-ball-level contrastive learning improves multi-view clustering—is supported by external benchmarks and ablations, so it is not circular with respect to the method's equations. I found one genuine definitional circularity: Eq. (2) defines overlap via p_i and p_j, but p_i and p_j are themselves the overlap counts of the same matrix A^v defined by Eq. (2), leaving the intra-view mask (and hence part of Lcon) ill-defined as written. This is a load-bearing subcomponent rather than a minor citation issue, so the score is 4 rather than 0-2. I do not classify Eq. (12)'s missing negative sign/log as circularity; it is a serious correctness/sign error that inverts the stated contrastive objective, but it is not a reduction of a prediction to its inputs. Hyperparameter selection on Caltech101-20/Cora is in-sample tuning, not a circular 'prediction' in the sense of this review, and the self-citations (e.g., Su et al. 2024) are contextual, not load-bearing.

Assumptions & free parameters 4 free parameters · 4 assumptions · 0 invented entities

The method rests on four tuned hyperparameters (p, tau, lambda, d), on the assumption that k-means clusters behave as granular balls, on a well-defined overlap matrix that Eq. (2) does not actually define, and on a contrastive loss that as printed would do the opposite of the claimed behavior. No invented entities are introduced: granular balls are inherited from prior granular-ball computing literature.

free parameters (4)
  • p = 1, 2, or 4 per dataset
    Controls the number of granular balls via k = floor(N/p). The authors say p significantly impacts results and select it after parameter analysis on Caltech101-20 and Cora.
  • tau = 0.1 (uniform)
    Threshold in Eq. (9) for deciding whether two cross-view balls share enough samples. Set uniformly with no sensitivity analysis.
  • lambda = 1 generally; 0 for BBCSport and Cora
    Regularization weight balancing contrastive and reconstruction losses. Adjusted per dataset without a stated selection rule.
  • d = 64 generally; 128 in ablation
    Projection feature dimension shared by all views. The authors report a relatively minor impact and choose d = 64 for most experiments.
assumptions (4)
  • domain assumption k-means clusters can serve as granular balls preserving local topological structure
    Section 'Within-view Granular-ball Generation' sets k = floor(N/p) and treats each k-means cluster as a granular ball; no argument is given that this preserves local structure or handles outliers as claimed.
  • ad hoc to paper Minimizing Eq. (12) pulls associated granular balls together
    The text states that associated balls should be close, but Eq. (12) lacks a negative sign or log; as written, minimization drives positive pairs apart and negative pairs together.
  • ad hoc to paper The overlap matrix Av from Eq. (2) is well-defined and computable
    Eq. (2) defines overlap using pi and pj, which are the overlap counts with adjacent balls; these depend on Av itself, and no fixed-point iteration or existence proof is supplied.
  • domain assumption Centers and radii of k-means clusters are gradient-preserving
    Section 'Within-view Granular-ball Generation' states this without proof. Hard k-means cluster assignments are not differentiable with respect to the encoder parameters in the usual sense.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Multi-view Granular-ball Contrastive Clustering." pith.science (2026). https://pith.science/paper/MMUAGX4R

@misc{pith2026241213550,
  author       = {Pith},
  title        = {Pith review of: Multi-view Granular-ball Contrastive Clustering},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/MMUAGX4R}},
  note         = {Machine review of arXiv:2412.13550}
}
read the original abstract

Previous multi-view contrastive learning methods typically operate at two scales: instance-level and cluster-level. Instance-level approaches construct positive and negative pairs based on sample correspondences, aiming to bring positive pairs closer and push negative pairs further apart in the latent space. Cluster-level methods focus on calculating cluster assignments for samples under each view and maximize view consensus by reducing distribution discrepancies, e.g., minimizing KL divergence or maximizing mutual information. However, these two types of methods either introduce false negatives, leading to reduced model discriminability, or overlook local structures and cannot measure relationships between clusters across views explicitly. To this end, we propose a method named Multi-view Granular-ball Contrastive Clustering (MGBCC). MGBCC segments the sample set into coarse-grained granular balls, and establishes associations between intra-view and cross-view granular balls. These associations are reinforced in a shared latent space, thereby achieving multi-granularity contrastive learning. Granular balls lie between instances and clusters, naturally preserving the local topological structure of the sample set. We conduct extensive experiments to validate the effectiveness of the proposed method.

Figures

Figures reproduced from arXiv: 2412.13550 by the authors.

Figure 1
Figure 1. Examples of granular balls Given a dataset {xi} n i=1, let {GBi} k i=1 denote the set of granular balls generated based on it, where k represents the total number of balls. As illustrated in [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. The framework of MGBCC. As shown, the overall loss function consists of two parts, e.g., reconstruction loss and [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. The t-SNE visualization of the clustering results on MNIST-USPS dataset. [PITH_FULL_IMAGE:figures/full_fig_p007_3.png] view at source ↗
Figures from the paper (2 more)
Figure 5
Figure 5. Figure 5: Loss vs. Metrics on Cora. Convergence Analysis We evaluated the convergence of the proposed method on Cora dataset by tracking the loss values and corresponding clustering performance over increasing epochs. As shown in [PITH_FULL_IMAGE:figures/full_fig_p007_5.png]
Figure 4
Figure 4. Figure 4: The clustering accuracy (%) with different param [PITH_FULL_IMAGE:figures/full_fig_p007_4.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

49 extracted references · 44 canonical work pages

  1. [1]

    , " * write output.state after.block = add.period write newline

    ENTRY address archivePrefix author booktitle chapter edition editor eid eprint howpublished institution isbn journal key month note number organization pages publisher school series title type volume year label extra.label sort.label short.list INTEGERS output.state before.all mid.sentence after.sentence after.block FUNCTION init.state.consts #0 'before.a...

  2. [2]

    write newline

    " write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION word.in bbl.in capitalize " " * FUNCT...

  3. [3]

    Andrew, G.; Arora, R.; Bilmes, J.; and Livescu, K. 2013. Deep canonical correlation analysis. In Proceedings of the 30th International Conference on International Conference on Machine Learning, volume 28, III–1247–III–1255

  4. [4]

    Bisson, G.; and Grimal, C. 2012. Co-clustering of Multi-view Datasets: A Parallelizable Approach. In 2012 IEEE 12th International Conference on Data Mining, 828--833

  5. [5]

    L.; and Peng, X

    Chen, J.; Mao, H.; Woo, W. L.; and Peng, X. 2023. Deep Multiview Clustering by Contrasting Cluster Assignments. In 2023 IEEE/CVF International Conference on Computer Vision, 16706--16715

  6. [6]

    Chen, L. 1982. Topological Structure in Visual Perception. Science, 218(4573): 699--700

  7. [7]

    Chen, T.; Kornblith, S.; Norouzi, M.; and Hinton, G. 2020. A simple framework for contrastive learning of visual representations. In Proceedings of the 37th International Conference on Machine Learning

  8. [8]

    Cheng, D.; Li, Y.; Xia, S.; Wang, G.; Huang, J.; and Zhang, S. 2024. A Fast Granular-Ball-Based Density Peaks Clustering Algorithm for Large-Scale Data. IEEE Transactions on Neural Networks and Learning Systems, 35(12): 17202--17215

Show all 49 references
  1. [9]

    Deng, S.; Wen, J.; Liu, C.; Yan, K.; Xu, G.; and Xu, Y. 2024. Projective Incomplete Multi-View Clustering. IEEE Transactions on Neural Networks and Learning Systems, 35(8): 10539--10551

  2. [10]

    Fang, U.; Li, M.; Li, J.; Gao, L.; Jia, T.; and Zhang, Y. 2023. A Comprehensive Survey on Multi-View Clustering. IEEE Transactions on Knowledge and Data Engineering, 35(12): 12350--12368

  3. [11]

    Fei-Fei, L.; and Perona, P. 2005. A Bayesian hierarchical model for learning natural scene categories. In 2005 IEEE Computer Society Conference on Computer Vision and Pattern Recognition, volume 2, 524--531

  4. [12]

    Greene, D.; and Cunningham, P. 2006. Practical Solutions to the Problem of Diagonal Dominance in Kernel Document Clustering. In Proceedings of International Conference on Machine learning, 377--384

  5. [13]

    He, K.; Fan, H.; Wu, Y.; Xie, S.; and Girshick, R. 2020. Momentum Contrast for Unsupervised Visual Representation Learning. In 2020 IEEE/CVF Conference on Computer Vision and Pattern Recognition, 9726--9735

  6. [14]

    W.; and Xu, Z

    Huang, S.; Kang, Z.; Tsang, I. W.; and Xu, Z. 2019. Auto-weighted multi-view clustering via kernelized graph learning. Pattern Recognition, 88: 174--184

  7. [15]

    W.; Xu, Z.; and Lv, J

    Huang, S.; Tsang, I. W.; Xu, Z.; and Lv, J. 2022. Measuring Diversity in Graph Learning: A Unified Framework for Structured Multi-View Clustering. IEEE Transactions on Knowledge and Data Engineering, 34(12): 5869--5883

  8. [16]

    Jin, J.; Wang, S.; Dong, Z.; Liu, X.; and Zhu, E. 2023. Deep Incomplete Multi-View Clustering with Cross-View Partial Sample and Prototype Alignment. In 2023 IEEE/CVF Conference on Computer Vision and Pattern Recognition, 11600--11609

  9. [17]

    Li, Y.; Nie, F.; Huang, H.; and Huang, J. 2015. Large-scale multi-view spectral clustering via bipartite graph. In Proceedings of the Twenty-Ninth AAAI Conference on Artificial Intelligence, 2750–2756

  10. [18]

    Lin, Y.; Gou, Y.; Liu, Z.; Li, B.; Lv, J.; and Peng, X. 2021. COMPLETER: Incomplete Multi-view Clustering via Contrastive Prediction. In 2021 IEEE/CVF Conference on Computer Vision and Pattern Recognition, 11169--11178

  11. [19]

    Liu, J.; Hao, J.; Ma, Y.; and Xia, S. 2024. Unlock the Cognitive Generalization of Deep Reinforcement Learning via Granular Ball Representation. In Proceedings of the 41st International Conference on Machine Learning, volume 235, 31062--31079

  12. [20]

    Liu, J.; Liu, X.; Yang, Y.; Liao, Q.; and Xia, Y. 2023. Contrastive Multi-View Kernel Learning. IEEE Transactions on Pattern Analysis and Machine Intelligence, 45(8): 9552--9566

  13. [21]

    Liu, X. 2023. SimpleMKKM: Simple Multiple Kernel K-Means. IEEE Transactions on Pattern Analysis and Machine Intelligence, 45(4): 5174--5186

  14. [22]

    Lloyd, S. 1982. Least squares quantization in PCM. IEEE Transactions on Information Theory, 28(2): 129--137

  15. [23]

    Paszke, A.; Gross, S.; Massa, F.; Lerer, A.; Bradbury, J.; Chanan, G.; Killeen, T.; Lin, Z.; Gimelshein, N.; Antiga, L.; Desmaison, A.; Kopf, A.; Yang, E.; DeVito, Z.; Raison, M.; Tejani, A.; Chilamkurthy, S.; Steiner, B.; Fang, L.; Bai, J.; and Chintala, S. 2019. PyTorch: An ...

  16. [24]

    Peng, X.; Huang, Z.; Lv, J.; Zhu, H.; and Zhou, J. T. 2019. COMIC : Multi-view Clustering Without Parameter Selection. In Proceedings of the 36th International Conference on Machine Learning, volume 97, 5092--5101

  17. [25]

    Peng, X.; Xiao, S.; Feng, J.; Yau, W.-Y.; and Yi, Z. 2016. Deep subspace clustering with sparsity prior. In Proceedings of the Twenty-Fifth International Joint Conference on Artificial Intelligence, 1925–1931

  18. [26]

    Quadir, A.; and Tanveer, M. 2024. Granular Ball Twin Support Vector Machine With Pinball Loss Function. IEEE Transactions on Computational Social Systems, 1--10

  19. [27]

    Schubert, E.; and Zimek, A. 2010. ELKI Multi-View Clustering Data Sets Based on the Amsterdam Library of Object Images (ALOI) (1.0). Data set

  20. [28]

    Su, P.; Liu, Y.; Li, S.; Huang, S.; and Lv, J. 2024. Robust Contrastive Multi-view Kernel Clustering. In Proceedings of the Thirty-Third International Joint Conference on Artificial Intelligence, 4938--4945

  21. [29]

    Wang, G. 2017. DGCC: data-driven granular cognitive computing. Granular Computing, 2(4): 343--355

  22. [30]

    Wang, W.; Arora, R.; Livescu, K.; and Bilmes, J. 2015. On deep multi-view representation learning. In Proceedings of the 32nd International Conference on International Conference on Machine Learning, volume 37, 1083–1092

  23. [31]

    Wen, J.; Zhang, Z.; Zhang, Z.; Wu, Z.; Fei, L.; Xu, Y.; and Zhang, B. 2020. DIMC-net: Deep Incomplete Multi-view Clustering Network. In Proceedings of the 28th ACM International Conference on Multimedia, 3753–3761. New York, NY, USA

  24. [32]

    Xia, D.; Wang, G.; Zhang, Q.; Yang, J.; and Xia, S. 2024 a . Three-Way Approximations Fusion With Granular-Ball Computing to Guide Multigranularity Fuzzy Entropy for Feature Selection. IEEE Transactions on Fuzzy Systems, 32(10): 5963--5977

  25. [33]

    Xia, S.; Lian, X.; Wang, G.; Gao, X.; Chen, J.; and Peng, X. 2024 b . GBSVM: An Efficient and Robust Support Vector Machine Framework via Granular-Ball Computing. IEEE Transactions on Neural Networks and Learning Systems, 1--15

  26. [34]

    Xia, S.; Liu, Y.; Ding, X.; Wang, G.; Yu, H.; and Luo, Y. 2019. Granular ball computing classifiers for efficient, scalable and robust learning. Information Sciences, 483: 136--152

  27. [35]

    Xia, S.; Wang, C.; Wang, G.; Gao, X.; Ding, W.; Yu, J.; Zhai, Y.; and Chen, Z. 2023 a . GBRS: A Unified Granular-Ball Learning Model of Pawlak Rough Set and Neighborhood Rough Set. IEEE Transactions on Neural Networks and Learning Systems, 1--15

  28. [36]

    Xia, S.; Zhang, H.; Li, W.; Wang, G.; Giem, E.; and Chen, Z. 2022. GBNRS: A Novel Rough Set Algorithm for Fast Adaptive Attribute Reduction in Classification. IEEE Transactions on Knowledge and Data Engineering, 34(3): 1231--1242

  29. [37]

    Xia, S.; Zheng, S.; Wang, G.; Gao, X.; and Wang, B. 2023 b . Granular Ball Sampling for Noisy Label Classification or Imbalanced Classification. IEEE Transactions on Neural Networks and Learning Systems, 34(4): 2144--2155

  30. [38]

    Xie, J.; Dai, M.; Xia, S.; Zhang, J.; Wang, G.; and Gao, X. 2024 a . An Efficient Fuzzy Stream Clustering Method Based on Granular-Ball Structure. In Proceedings of the 40th International Conference on Data Engineering, 901--913

  31. [39]

    Xie, J.; Hua, C.; Xia, S.; Cheng, Y.; Wang, G.; and Gao, X. 2024 b . W-GBC: An Adaptive Weighted Clustering Method Based on Granular-Ball Structure. In Proceedings of the 40th International Conference on Data Engineering, 914--925

  32. [40]

    Xie, J.; Xiang, X.; Xia, S.; Jiang, L.; Wang, G.; and Gao, X. 2024 c . MGNR: A Multi-Granularity Neighbor Relationship and Its Application in KNN Classification and Clustering Methods. IEEE Transactions on Pattern Analysis and Machine Intelligence, 46(12): 7956--7972

  33. [41]

    Xu, J.; Chen, S.; Ren, Y.; Shi, X.; Shen, H.; Niu, G.; and Zhu, X. 2023 a . Self-Weighted Contrastive Learning among Multiple Views for Mitigating Representation Degeneration. Advances in Neural Information Processing Systems, 36: 1119--1131

  34. [42]

    T.; and Zhu, X

    Xu, J.; Li, C.; Peng, L.; Ren, Y.; Shi, X.; Shen, H. T.; and Zhu, X. 2023 b . Adaptive Feature Projection With Distribution Alignment for Deep Incomplete Multi-View Clustering. IEEE Transactions on Image Processing, 32: 1354--1366

  35. [43]

    Xu, J.; Tang, H.; Ren, Y.; Peng, L.; Zhu, X.; and He, L. 2022. Multi-Level Feature Learning for Contrastive Multi-View Clustering. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 16051--16060

  36. [44]

    Yang, J.; Liu, Z.; Xia, S.; Wang, G.; Zhang, Q.; Li, S.; and Xu, T. 2024. 3WC-GBNRS++: A Novel Three-Way Classifier With Granular-Ball Neighborhood Rough Sets Based on Uncertainty. IEEE Transactions on Fuzzy Systems, 32(8): 4376--4387

  37. [45]

    Yang, M.; Li, Y.; Hu, P.; Bai, J.; Lv, J.; and Peng, X. 2023 a . Robust Multi-View Clustering With Incomplete Information. IEEE Transactions on Pattern Analysis and Machine Intelligence, 45(1): 1055--1069

  38. [46]

    Yang, X.; Jiaqi, J.; Wang, S.; Liang, K.; Liu, Y.; Wen, Y.; Liu, S.; Zhou, S.; Liu, X.; and Zhu, E. 2023 b . DealMVC: Dual Contrastive Calibration for Multi-view Clustering. In Proceedings of the 31st ACM International Conference on Multimedia, 337–346

  39. [47]

    Zhang, B.; and Wang, L. 2024. False Negative Sample Detection for Graph Contrastive Learning. Tsinghua Science and Technology, 29(2): 529--542

  40. [48]

    Zhang, Q.; Wu, C.; Xia, S.; Zhao, F.; Gao, M.; Cheng, Y.; and Wang, G. 2023. Incremental Learning Based on Granular Ball Rough Sets for Classification in Dynamic Mixed-Type Decision System. IEEE Transactions on Knowledge and Data Engineering, 35(9): 9319--9332

  41. [49]

    Zhao, M.; Yang, W.; and Nie, F. 2023. Deep multi-view spectral clustering via ensemble. Pattern Recognition, 144: 109836

Pith tools

Reviewed August 11, 2026 · model on record in the stance chip above.