REVIEW 5 major objections 5 minor 65 references
Automatically Identify and Rectify: Robust Deep Contrastive Multi-view Clustering in Noisy Scenarios
T0 review · 5 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read Multi-view clustering can automatically identify and repair its own noisy samples, staying accurate when up to 90% of the data is corrupted.
desk verdict Solid empirical recipe, broken theory appendix, and an unverified clean-first-view assumption—worth a serious referee, not worth citing the theorem. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the two-component Gaussian mixture model fitted to the soft-prediction confidence score $\chi_{y=q|i}$ (Eq. 6): one component, with higher mean, is interpreted as the clean cluster and yields $\varphi_i$, the other as the noisy cluster. It carries the argument because every downstream step keys off $\varphi_i$: the hybrid rectification $m^v_i = \varphi^v_i y^v_i + (1-\varphi^v_i) y^1_i$ (Eq. 7) interpolates between a view's own prediction and the first view's prediction with weight $(1-\varphi^v_i)$ on the latter, so samples judged noisy are rewritten toward the trusted view. The third mechanism is the thresholded contrastive pair filter, which admits a cross-view sample pair only when $(y^m_i)^\top (y^n_j) \geq \tau$, so soft-prediction agreement screens out incorrect positive/negative pairs before the contrastive loss acts. Theorem 4.1, proved via the data processing inequality and mutual-information bounds in the style of the referenced contrastive-learning analysis, converts these mechanisms into a claim about representation content: the learned $E^*$ provably keeps $y$ (clean information) and drops $y'$ (noisy information).
What would settle it
Two checks would settle the claim. First, reproduce the training recipe but inject a known fraction of noise into the designated first view as well: if accuracy and NMI fall as sharply as the baselines' do, the rectification anchor fails and the 'noise discarded' theorem does not transfer to the corrupt-anchor regime. Second, the authors should report the exact noise-injection protocol (which views were corrupted and with what noise distribution); if view 1 was never corrupted in the experiments, the assumption is satisfied by construction and the method's general robustness claim remains untested. A third, more direct test: with synthetic injection where ground-truth clean/noisy labels are known, check whether $\varphi_i$ actually flags the injected samples — if the GMM's clean probability is at chance level, the identification step, on which rectification and the theorem both depend, is not doing the claimed work.
Extended reading notes
Core claim
The central claim, stated on the paper's own terms, is that noisy multi-view clustering can be solved by turning noise identification into an anomaly-detection problem on soft predictions. AIRMVC builds a GMM over the representations, substitutes the network's soft prediction $p(y_i = k | x_i)$ for the GMM's discrete latent assignment, and derives a per-sample confidence score $\chi_{y=q|i}$, the probability that the predicted class matches the cluster implied by the representation. A two-component GMM fitted to this score yields $\varphi_i$, the probability that sample $i$ is clean, and $1-\varphi_i$, the probability that it is noisy. Rectification then blends each non-first view's prediction toward the first view's prediction, $m^v_i = \varphi^v_i y^v_i + (1-\varphi^v_i) y^1_i$, with a cross-entropy loss pulling the view's own prediction toward this mixture. The contrastive mechanism pairs samples across views only when their soft predictions agree above a threshold $\tau$, and Theorem 4.1 asserts the resulting representations $E^*$ satisfy $I(x;y) - \vartheta \leq I(E^*;y) \leq I(x;y)$ and $I(E^*;y') \leq I(x;y') - \eta + \vartheta$: clean information is retained, noisy information is shed. The identification is unsupervised and dynamic — the GMM parameters are updated alongside the network rather than fixed by a preprocessing pass — so the whole pipeline runs automatically.
Load-bearing premise
The entire rectification chain assumes the first view is clean (Section 3.2: 'we assume the first view to be the clean view'), because every other view's prediction is pulled toward the first view's prediction with weight $(1-\varphi_i)$; if view 1 itself carries noise, the correction step propagates and reinforces those wrong predictions instead of removing them. The paper never states how synthetic noise was injected in the experiments, so whether this assumption was actually satisfied — that is, whether view 1 was left uncorrupted — cannot be verified from the text.
Editorial extensions
If this is right
- An unsupervised model can keep meaningful cluster structure up to 90% injected noise: on six benchmarks AIRMVC reports higher accuracy, NMI, and purity than eleven baselines at every tested noise rate from 10% to 90%.
- Noise handling moves inside the training loop: the GMM's clean/noisy split updates together with the encoder, so identification, rectification, and representation learning reinforce one another instead of being separate stages.
- Only one trusted view is needed: the rectification blend targets the first view's prediction, so the method requires no clean labels, no manual noise annotation, and no per-dataset tuning ($\alpha = \beta = 1.0$, $\tau = 0.8$ across all datasets).
- Contrastive pairing becomes prediction-filtered: pairs are used only when soft predictions agree above $\tau$, which the paper argues removes most incorrect pairings, and Theorem 4.1 asserts these representations provably retain clean information while shedding noisy information.
Reading between the lines
- The fix could transfer to single-view settings: Equation (7) is confidence-weighted interpolation toward a trusted prediction, the same soft-target mechanism used in label-noise and semi-supervised learning, so a known-clean anchor could denoise a single view the same way.
- The paper leaves the reference-view choice fixed; a natural extension is to select the view with the highest average $\varphi$ as the anchor, or to blend toward all views weighted by their own clean probabilities, which would soften the dependence on one assumed-clean view.
- Because performance rose monotonically as $\tau$ increased from 0.2 to 0.8, the method evidently prefers few, high-confidence pairs; a check at $\tau \to 1$, where only near-identical predictions pair, would reveal whether the contrastive signal remains useful at maximum precision.
- Whether the claim generalizes to corrupt-anchor scenarios is untested: the paper never says how the synthetic noise was injected, so if view 1 was always spared, the reported results verify the method under its strongest assumption rather than under arbitrary noise patterns.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes AIRMVC, a deep multi-view clustering method for noisy inputs. It identifies noisy samples by fitting a two-component GMM to a confidence score derived from per-view soft predictions, rectifies noisy predictions by mixing them with the first view's soft prediction, and trains with a soft-prediction-gated contrastive loss. The paper claims a theorem (Theorem 4.1) guaranteeing that the learned representations preserve clean information and discard noisy information, and validates the method on six benchmarks under 10%--90% injected noise against several recent baselines.
Significance. If the claims were fully established, the paper would be a useful contribution to robust multi-view clustering: it addresses a practical setting, the experiments are broad (six datasets, eleven baselines, three metrics, several noise levels), code is released, and ablations and hyperparameter analyses are included. The authors also explicitly state the clean-first-view assumption, which is a welcome transparency. However, the theoretical guarantee is currently not valid as presented, and the experimental protocol omits the information needed to check the key clean-view assumption. The contribution is therefore conditional on correcting the theory and clarifying or validating the noise setup.
major comments (5)
- [Appendix A.2, Eq. (16)] The proof of the first inequality in Theorem 4.1 invokes the data processing inequality for the Markov chain y ↔ x → E and states I(x;y) ≤ I(E;y). The data processing inequality gives the reverse inequality, I(E;y) ≤ I(x;y). Consequently, the derivation of the lower bound I(E*;y) ≥ I(x;y) − ϑ in Eq. (20) is unsupported. Because the same reversed inequality is used in the bound on I(E*;y′), the core claim that the learned representation discards noisy information is not established.
- [Appendix A.2, Eq. (17)] The equalities I(E*;x+) = I(x;x+) and I(E*;x+|y) = I(x;x+|y) are asserted without proof. Maximizing I(E;x+) over E does not imply that the data-processing upper bound is attained, and no argument is given for the conditional equality. These equalities are used to derive Eqs. (18)--(21), so the theorem is not proved even if the direction in Eq. (16) were corrected.
- [Section 4 and Appendix A.2] The theorem analyzes E* = argmax_E I(E; x+) for a generic positive sample x+; it never uses the confidence-gated indicator in Eq. (10), the threshold τ, the clean probability φ, or the rectification target in Eq. (7). The variables y and y′ are also not connected to the model's soft predictions or to the actual corruption process. The proof therefore does not justify the noise-robust or rectification properties that the paper attributes to the proposed mechanism.
- [Section 3.2, Eq. (7); Section 5.1] The hybrid rectification blends every view's soft prediction toward y^1 with weight (1−φ_i^v), and the text explicitly assumes the first view to be clean. However, Section 5.1 only states that noise is randomly introduced into the multi-view input data x at given proportions and does not specify whether view 1 is excluded from corruption or what noise model is used. If view 1 is corrupted for a sample, the rectification target y^1 is itself wrong and the loss in Eq. (8) propagates the error. The experiments need to report the noise injection protocol and either enforce the clean-view assumption or test its validity; otherwise the central empirical claim is not fully supported.
- [Section 3.1, Eqs. (5)--(8)] The identification probability φ_i is estimated from a two-component GMM fitted to χ_{y=q|i}, which is computed from the model's own soft predictions y_i, and those same soft predictions are then rectified using φ_i. In an unsupervised setting this self-referential loop may simply re-weight low-confidence samples rather than detect true corruption. To substantiate the claim of automatic identification, the authors should report a concrete validation, for example precision/recall of the identified noisy samples against the known injected noise, or a calibration check showing that φ_i tracks the actual noise status.
minor comments (5)
- [Section 5.1 and Table 1] The text lists seven datasets (BBCSport, Reuters, Caltech101, UCI-digit, WebKB, SUNRGB-D, and STL10) but Table 1 reports only six and does not include SUNRGB-D; the list should be reconciled.
- [Section 2 and Eq. (2)] The GMM is defined on representations E, but Eq. (2) writes p(q_i = k | x_i) ∝ N(x_i | μ_k, σ_k); the conditioning variable should be E_i for consistency with Eq. (3).
- [Appendix A.2] The proof is introduced as 'Theorem. 14', but the theorem is numbered 4.1 in the main text and A.1 in the appendix; the numbering should be consistent.
- [Section 5.4] There is a typo: 'we employt-SNE' should read 'we employ t-SNE'.
- [Section 6] The sentence 'Moreover, we theoretical proof that the learned representations could discard the noisy information' should be rephrased, e.g., 'we theoretically prove that the learned representations discard noisy information'.
Circularity Check
AIRMVC's empirical comparisons are independently benchmarked; the identified weaknesses (first-view-clean assumption, Theorem 4.1 proof gaps) are assumptions or proof errors, not circular reductions.
full rationale
No circular step can be exhibited by the paper's own equations. The noise-identification module (Eqs. 5-6) estimates a clean probability φ from the model's own soft-prediction confidences via a two-component GMM; this is a self-training / EM-style loop, but the reported clustering quality is evaluated against ground-truth labels on six external benchmarks, so the central empirical claim is not forced by the identification mechanism's internal definitions. The rectification step (Eq. 7) is an explicit convex combination of a view's soft prediction and the first view's prediction, and the paper openly states the load-bearing assumption 'we assume the first view to be the clean view,' attributing it to prior non-overlapping work (Huang et al., 2020; Yang et al., 2023a; Sun et al., 2024; Yang et al., 2021). An explicit assumption, even if unverified and potentially harmful when view 1 is noisy, is not a circular derivation. Theorem 4.1 has genuine proof problems: Eq. (16) states a reversed data-processing inequality, and the MI constraints in Definition A.4 are not linked to the GMM's φ or to the actual injected noise; these are correctness/validity gaps, not instances where the conclusion is identical to the input by construction. Self-citations (DealMVC, TGM-MVC, SCE-MVC) appear only as comparison baselines and related-work context and are not load-bearing for the method's derivation. The paper's main experimental claims are self-contained against external benchmarks, so the appropriate circularity finding is no significant circularity.
Assumptions & free parameters
free parameters (3)
- tau (contrastive confidence threshold) =
0.8
- alpha (rectification loss weight) =
1.0
- beta (contrastive loss weight) =
1.0
assumptions (7)
- domain assumption The first view is clean.
- domain assumption Soft predictions can act as GMM latent assignments.
- domain assumption The confidence score chi is bimodally separable into clean and noisy components.
- ad hoc to paper Minimizing the proposed contrastive loss maximizes I(E; x+).
- ad hoc to paper The maximizer E* satisfies I(E*; x+) = I(x; x+) and I(E*; x+|y) = I(x; x+|y).
- standard math Data Processing Inequality applies to y -> x -> E.
- domain assumption The mutual information constraints I(x; y|x+) <= vartheta and I(x; y'|x+) > eta hold.
Cite this review
Pith. "Pith review of Automatically Identify and Rectify: Robust Deep Contrastive Multi-view Clustering in Noisy Scenarios." pith.science (2026). https://pith.science/paper/4GS3IGH2
@misc{pith2026250521387,
author = {Pith},
title = {Pith review of: Automatically Identify and Rectify: Robust Deep Contrastive Multi-view Clustering in Noisy Scenarios},
year = {2026},
howpublished = {\url{https://pith.science/paper/4GS3IGH2}},
note = {Machine review of arXiv:2505.21387}
}
read the original abstract
Leveraging the powerful representation learning capabilities, deep multi-view clustering methods have demonstrated reliable performance by effectively integrating multi-source information from diverse views in recent years. Most existing methods rely on the assumption of clean views. However, noise is pervasive in real-world scenarios, leading to a significant degradation in performance. To tackle this problem, we propose a novel multi-view clustering framework for the automatic identification and rectification of noisy data, termed AIRMVC. Specifically, we reformulate noisy identification as an anomaly identification problem using GMM. We then design a hybrid rectification strategy to mitigate the adverse effects of noisy data based on the identification results. Furthermore, we introduce a noise-robust contrastive mechanism to generate reliable representations. Additionally, we provide a theoretical proof demonstrating that these representations can discard noisy information, thereby improving the performance of downstream tasks. Extensive experiments on six benchmark datasets demonstrate that AIRMVC outperforms state-of-the-art algorithms in terms of robustness in noisy scenarios. The code of AIRMVC are available at https://github.com/xihongyang1999/AIRMVC on Github.
Figures
Figures from the paper (8 more)
Reference graph
Works this paper leans on
-
[1]
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 format.date year duplicate empty "emp...
-
[2]
A simple framework for contrastive learning of visual representations
Chen, T., Kornblith, S., Norouzi, M., and Hinton, G. A simple framework for contrastive learning of visual representations. In International conference on machine learning, pp.\ 1597--1607. PMLR, 2020
2020
-
[3]
Cover, T. M. Elements of information theory. John Wiley & Sons, 1999
1999
-
[4]
Dang, Y., Liu, Y., Yang, E., Guo, G., Jiang, L., Zhao, J., and Wang, X. Efficient and adaptive recommendation unlearning: A guided filtering framework to erase outdated preferences. ACM Transactions on Information Systems, 43 0 (2): 0 1--25, 2025 a
work page 2025
-
[5]
Data augmentation as free lunch: Exploring the test-time augmentation for sequential recommendation
Dang, Y., Liu, Y., Yang, E., Huang, M., Guo, G., Zhao, J., and Wang, X. Data augmentation as free lunch: Exploring the test-time augmentation for sequential recommendation. arXiv preprint arXiv:2504.04843, 2025 b
arXiv 2025
-
[6]
Iterative deep structural graph contrast clustering for multiview raw data
Dong, Z., Jin, J., Xiao, Y., Wang, S., Zhu, X., Liu, X., and Zhu, E. Iterative deep structural graph contrast clustering for multiview raw data. IEEE Transactions on Neural Networks and Learning Systems, pp.\ 1--13, 2023 a . doi:10.1109/TNNLS.2023.3313692
-
[7]
Cross-view topology based consistent and complementary information for deep multi-view clustering
Dong, Z., Wang, S., Jin, J., Liu, X., and Zhu, E. Cross-view topology based consistent and complementary information for deep multi-view clustering. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV), pp.\ 19440--19451, October 2023 b
work page 2023
-
[8]
Robust contrastive multi-view clustering against dual noisy correspondence
Guo, R., Yang, M., Lin, Y., Peng, X., and Hu, P. Robust contrastive multi-view clustering against dual noisy correspondence. In The Thirty-eighth Annual Conference on Neural Information Processing Systems
Show all 65 references
-
[9]
and Khasahmadi, A
Hassani, K. and Khasahmadi, A. H. Contrastive multi-view representation learning on graphs. In International Conference on Machine Learning, pp.\ 4116--4126. PMLR, 2020
2020
-
[10]
Momentum contrast for unsupervised visual representation learning
He, K., Fan, H., Wu, Y., Xie, S., and Girshick, R. Momentum contrast for unsupervised visual representation learning. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp.\ 9729--9738, 2020
2020
-
[11]
Hinton, G. E. Training products of experts by minimizing contrastive divergence. Neural computation, 14 0 (8): 0 1771--1800, 2002
2002
-
[12]
D., Fedorov, A., Lavoie-Marchildon, S., Grewal, K., Bachman, P., Trischler, A., and Bengio, Y
Hjelm, R. D., Fedorov, A., Lavoie-Marchildon, S., Grewal, K., Bachman, P., Trischler, A., and Bengio, Y. Learning deep representations by mutual information estimation and maximization. arXiv preprint arXiv:1808.06670, 2018
2018 arXiv
-
[13]
Exploring the role of node diversity in directed graph representation learning
Huang, J., Mo, Y., Hu, P., Shi, X., Yuan, S., Zhang, Z., and Zhu, X. Exploring the role of node diversity in directed graph representation learning. In Proceedings of the Thirty-Third International Joint Conference on Artificial Intelligence, pp.\ 2072--2080, 2024 a
2024
-
[14]
On which nodes does gcn fail? enhancing gcn from the node perspective
Huang, J., Shen, J., Shi, X., and Zhu, X. On which nodes does gcn fail? enhancing gcn from the node perspective. In Forty-first International Conference on Machine Learning, 2024 b
2024
-
[15]
T., Lv, J., and Peng, X
Huang, Z., Hu, P., Zhou, J. T., Lv, J., and Peng, X. Partially view-aligned clustering. Advances in Neural Information Processing Systems, 33: 0 2892--2902, 2020
2020
-
[16]
and Dayan, P
Hyv \"a rinen, A. and Dayan, P. Estimation of non-normalized statistical models by score matching. Journal of Machine Learning Research, 6 0 (4), 2005
2005
-
[17]
B., and Kanagachidambaresan, G
Imambi, S., Prakash, K. B., and Kanagachidambaresan, G. Pytorch. Programming with TensorFlow: solution for edge computing applications, pp.\ 87--104, 2021
2021
-
[18]
Kingma, D. P. and Ba, J. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014
2014 arXiv
-
[19]
Cross-view graph matching guided anchor alignment for incomplete multi-view clustering
Li, X., Sun, Y., Sun, Q., Ren, Z., and Sun, Y. Cross-view graph matching guided anchor alignment for incomplete multi-view clustering. Information Fusion, 100: 0 101941, 2023
2023
-
[20]
P., Sun, Y., Sun, Q., Sun, Y., W
Li, X., Pan, Y. P., Sun, Y., Sun, Q., Sun, Y., W. Tsang, I., and Ren, Z. Incomplete multi-view clustering with paired and balanced dynamic anchor learning. IEEE Transactions on Multimedia, pp.\ 7087--7098, 2025
2025
-
[21]
Consensus graph learning for multi-view clustering
Li, Z., Tang, C., Liu, X., Zheng, X., Zhang, W., and Zhu, E. Consensus graph learning for multi-view clustering. IEEE Transactions on Multimedia, 24: 0 2461--2472, 2021
2021
-
[22]
Efficient one-pass multi-view subspace clustering with consensus anchors
Liu, S., Wang, S., Zhang, P., Xu, K., Liu, X., Zhang, C., and Gao, F. Efficient one-pass multi-view subspace clustering with consensus anchors. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 36, pp.\ 7576--7584, 2022 a
2022
-
[23]
One pass late fusion multi-view clustering
Liu, X., Liu, L., Liao, Q., Wang, S., Zhang, Y., Tu, W., Tang, C., Liu, J., and Zhu, E. One pass late fusion multi-view clustering. In International Conference on Machine Learning, pp.\ 6850--6859. PMLR, 2021
2021
-
[24]
Deep graph clustering via dual correlation reduction
Liu, Y., Tu, W., Zhou, S., Liu, X., Song, L., Yang, X., and Zhu, E. Deep graph clustering via dual correlation reduction. In AAAI Conference on Artificial Intelligence, 2022 b
2022
-
[25]
Simple contrastive graph clustering
Liu, Y., Yang, X., Zhou, S., Liu, X., Wang, S., Liang, K., Tu, W., and Li, L. Simple contrastive graph clustering. IEEE Transactions on Neural Networks and Learning Systems, 2023
2023
-
[26]
Decoupled contrastive multi-view clustering with high-order random walks
Lu, Y., Lin, Y., Yang, M., Peng, D., Hu, P., and Peng, X. Decoupled contrastive multi-view clustering with high-order random walks. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 38, pp.\ 14193--14201, 2024
2024
-
[27]
Revisiting self-supervised heterogeneous graph learning from spectral clustering perspective
Mo, Y., Lu, Z., Yu, R., Zhu, X., and Wang, X. Revisiting self-supervised heterogeneous graph learning from spectral clustering perspective. In NeurIPS, 2024
2024
-
[28]
Hg-adapter: Improving pre-trained heterogeneous graph neural networks with dual adapters
Mo, Y., Yu, R., Zhu, X., and Wang, X. Hg-adapter: Improving pre-trained heterogeneous graph neural networks with dual adapters. In ICLR, 2025
2025
-
[29]
Robust multi-view clustering with noisy correspondence
Sun, Y., Qin, Y., Li, Y., Peng, D., Peng, X., and Hu, P. Robust multi-view clustering with noisy correspondence. IEEE Transactions on Knowledge and Data Engineering, 2024
2024
-
[30]
Contrastive multiview coding
Tian, Y., Krishnan, D., and Isola, P. Contrastive multiview coding. In Computer Vision--ECCV 2020: 16th European Conference, Glasgow, UK, August 23--28, 2020, Proceedings, Part XI 16, pp.\ 776--794. Springer, 2020
2020
-
[31]
J., Lokse, S., Jenssen, R., and Kampffmeyer, M
Trosten, D. J., Lokse, S., Jenssen, R., and Kampffmeyer, M. Reconsidering representation alignment for multi-view clustering. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pp.\ 1255--1265, 2021
2021
-
[32]
H., Wu, Y., Salakhutdinov, R., and Morency, L.-P
Tsai, Y.-H. H., Wu, Y., Salakhutdinov, R., and Morency, L.-P. Self-supervised learning from a multi-view perspective. arXiv preprint arXiv:2006.05576, 2020
2006 arXiv
-
[33]
Representation learning with contrastive predictive coding
Van den Oord, A., Li, Y., Vinyals, O., et al. Representation learning with contrastive predictive coding. arXiv preprint arXiv:1807.03748, 2 0 (3): 0 4, 2018
2018 arXiv
-
[34]
and Hinton, G
Van der Maaten, L. and Hinton, G. Visualizing data using t-sne. Journal of machine learning research, 9 0 (11), 2008
2008
-
[35]
Continual multi-view clustering
Wan, X., Liu, J., Liang, W., Liu, X., Wen, Y., and Zhu, E. Continual multi-view clustering. In Proceedings of the 30th ACM International Conference on Multimedia, pp.\ 3676--3684, 2022
2022
-
[36]
Fast continual multi-view clustering with incomplete views
Wan, X., Xiao, B., Liu, X., Liu, J., Liang, W., and Zhu, E. Fast continual multi-view clustering with incomplete views. IEEE Transactions on Image Processing, 33: 0 2995--3008, 2024. doi:10.1109/TIP.2024.3388974
2024
-
[37]
View gap matters: Cross-view topology and information decoupling for multi-view clustering
Wang, F., Jin, J., Dong, Z., Yang, X., Feng, Y., Liu, X., Zhu, X., Wang, S., Liu, T., and Zhu, E. View gap matters: Cross-view topology and information decoupling for multi-view clustering. In Proceedings of the 32nd ACM International Conference on Multimedia, pp.\ 8431--8440, 2024 a
2024
-
[38]
Evaluate then cooperate: Shapley-based view cooperation enhancement for multi-view clustering
Wang, F., Jin, J., Hu, J., Liu, S., Yang, X., Wang, S., Liu, X., and Zhu, E. Evaluate then cooperate: Shapley-based view cooperation enhancement for multi-view clustering. In The Thirty-eighth Annual Conference on Neural Information Processing Systems, 2024 b
2024
-
[39]
Generative partial multi-view clustering with adaptive fusion and cycle consistency
Wang, Q., Ding, Z., Tao, Z., Gao, Q., and Fu, Y. Generative partial multi-view clustering with adaptive fusion and cycle consistency. IEEE Transactions on Image Processing, 30: 0 1771--1783, 2021
2021
-
[40]
Incomplete multi-view clustering via graph regularized matrix factorization
Wen, J., Zhang, Z., Xu, Y., and Zhong, Z. Incomplete multi-view clustering via graph regularized matrix factorization. In Proceedings of the European conference on computer vision (ECCV) workshops, pp.\ 0--0, 2018
2018
-
[41]
Y., and He, L
Xu, J., Ren, Y., Tang, H., Yang, Z., Pan, L., Yang, Y., Pu, X., Philip, S. Y., and He, L. Self-supervised discriminative feature learning for deep multi-view clustering. IEEE Transactions on Knowledge and Data Engineering, 35 0 (7): 0 7470--7482, 2022 a
2022
-
[42]
Multi-level feature learning for contrastive multi-view clustering
Xu, J., Tang, H., Ren, Y., Peng, L., Zhu, X., and He, L. Multi-level feature learning for contrastive multi-view clustering. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp.\ 16051--16060, 2022 b
2022
-
[43]
Investigating and mitigating the side effects of noisy views for self-supervised clustering algorithms in practical multi-view scenarios
Xu, J., Ren, Y., Wang, X., Feng, L., Zhang, Z., Niu, G., and Zhu, X. Investigating and mitigating the side effects of noisy views for self-supervised clustering algorithms in practical multi-view scenarios. In Proceedings of the IEEE/CVF Conference on Computer Vision and Patte...
2024
-
[44]
Partially view-aligned representation learning with noise-robust contrastive loss
Yang, M., Li, Y., Huang, Z., Liu, Z., Hu, P., and Peng, X. Partially view-aligned representation learning with noise-robust contrastive loss. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pp.\ 1134--1143, 2021
2021
-
[45]
Robust multi-view clustering with incomplete information
Yang, M., Li, Y., Hu, P., Bai, J., Lv, J., and Peng, X. Robust multi-view clustering with incomplete information. IEEE transactions on pattern analysis and machine intelligence, 45 0 (1): 0 1055--1069, 2023 a
2023
-
[46]
Interpolation-based contrastive learning for few-label semi-supervised learning
Yang, X., Hu, X., Zhou, S., Liu, X., and Zhu, E. Interpolation-based contrastive learning for few-label semi-supervised learning. IEEE Transactions on Neural Networks and Learning Systems, pp.\ 1--12, 2022. doi:10.1109/TNNLS.2022.3186512
2022
-
[47]
Dealmvc: Dual contrastive calibration for multi-view clustering
Yang, X., Jin, J., Wang, S., Liang, K., Liu, Y., Wen, Y., Liu, S., Zhou, S., Liu, X., and Zhu, E. Dealmvc: Dual contrastive calibration for multi-view clustering. In Proceedings of the 31th ACM International Conference on Multimedia, 2023 b
2023
-
[48]
Cluster-guided contrastive graph clustering network
Yang, X., Liu, Y., Zhou, S., Wang, S., Tu, W., Zheng, Q., Liu, X., Fang, L., and Zhu, E. Cluster-guided contrastive graph clustering network. In Proceedings of the AAAI conference on artificial intelligence, volume 37, pp.\ 10834--10842, 2023 c
2023
-
[49]
Z., Liu, X., and Zhu, E
Yang, X., Tan, C., Liu, Y., Liang, K., Wang, S., Zhou, S., Xia, J., Li, S. Z., Liu, X., and Zhu, E. Convert: Contrastive graph clustering with reliable augmentation. In Proceedings of the 31st ACM International Conference on Multimedia, pp.\ 319--327, 2023 d
2023
-
[50]
Hyperbolic contrastive learning for cross-domain recommendation
Yang, X., Chang, H., Lai, Z., Yang, J., Li, X., Lu, Y., Wang, S., Yin, D., and Min, E. Hyperbolic contrastive learning for cross-domain recommendation. In Proceedings of the 33rd ACM International Conference on Information and Knowledge Management, pp.\ 2920--2929, 2024 a
2024
-
[51]
Graphlearner: Graph node clustering with fully learnable augmentation
Yang, X., Min, E., Liang, K., Liu, Y., Wang, S., Zhou, S., Wu, H., Liu, X., and Zhu, E. Graphlearner: Graph node clustering with fully learnable augmentation. In Proceedings of the 32nd ACM International Conference on Multimedia, pp.\ 5517--5526, 2024 b
2024
-
[52]
Mixed graph contrastive network for semi-supervised node classification
Yang, X., Wang, Y., Liu, Y., Wen, Y., Meng, L., Zhou, S., Liu, X., and Zhu, E. Mixed graph contrastive network for semi-supervised node classification. ACM Transactions on Knowledge Discovery from Data, 2024 c
2024
-
[53]
Darec: A disentangled alignment framework for large language model and recommender system
Yang, X., Jing, H., Zhang, Z., Wang, J., Niu, H., Wang, S., Lu, Y., Wang, J., Yin, D., Liu, X., Zhu, E., Lian, D., and Min, E. Darec: A disentangled alignment framework for large language model and recommender system. In 2025 IEEE 41rd International Conference on Data Engineer...
2025
-
[54]
Dual test-time training for out-of-distribution recommender system
Yang, X., Wang, Y., Chen, J., Fan, W., Zhao, X., Zhu, E., Liu, X., and Lian, D. Dual test-time training for out-of-distribution recommender system. IEEE Transactions on Knowledge and Data Engineering, 37 0 (6): 0 3312--3326, 2025 b . doi:10.1109/TKDE.2025.3548160
2025
-
[55]
Apgl4sr: A generic framework with adaptive and personalized global collaborative information in sequential recommendation
Yin, M., Wang, H., Xu, X., Wu, L., Zhao, S., Guo, W., Liu, Y., Tang, R., Lian, D., and Chen, E. Apgl4sr: A generic framework with adaptive and personalized global collaborative information in sequential recommendation. In Proceedings of the 32nd ACM international conference on...
2023
-
[56]
Dataset regeneration for sequential recommendation
Yin, M., Wang, H., Guo, W., Liu, Y., Zhang, S., Zhao, S., Lian, D., and Chen, E. Dataset regeneration for sequential recommendation. In Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and Data Mining, pp.\ 3954--3965, 2024
2024
-
[57]
Gzoo: Black-box node injection attack on graph neural networks via zeroth-order optimization
Yu, H., Liang, K., Hu, D., Tu, W., Ma, C., Zhou, S., and Liu, X. Gzoo: Black-box node injection attack on graph neural networks via zeroth-order optimization. IEEE Transactions on Knowledge and Data Engineering, 2024 a
2024
-
[58]
Dshield: Defending against backdoor attacks on graph neural networks via discrepancy learning
Yu, H., Ma, C., Wan, X., Wang, J., Xiang, T., Shen, M., and Liu, X. Dshield: Defending against backdoor attacks on graph neural networks via discrepancy learning. Network and Distributed System Security Symposium, NDSS , 2025
2025
-
[59]
Sparse low-rank multi-view subspace clustering with consensus anchors and unified bipartite graph
Yu, S., Liu, S., Wang, S., et al. Sparse low-rank multi-view subspace clustering with consensus anchors and unified bipartite graph. IEEE Transactions on Neural Networks and Learning Systems, 2023 a
2023
-
[60]
How to construct corresponding anchors for incomplete multiview clustering
Yu, S., Wang, S., et al. How to construct corresponding anchors for incomplete multiview clustering. IEEE Transactions on Circuits and Systems for Video Technology, 34 0 (4): 0 2845--2860, 2023 b
2023
-
[61]
Towards resource-friendly, extensible and stable incomplete multi-view clustering
Yu, S., Dong, Z., Wang, S., et al. Towards resource-friendly, extensible and stable incomplete multi-view clustering. In International Conference on Machine Learning, pp.\ 57415--57440. PMLR, 2024 b
2024
-
[62]
Cross-domain recommendation via user interest alignment
Zhao, C., Zhao, H., He, M., Zhang, J., and Fan, J. Cross-domain recommendation via user interest alignment. In Proceedings of the ACM Web Conference 2023, pp.\ 887--896, 2023 a
2023
-
[63]
Cross-domain recommendation via progressive structural alignment
Zhao, C., Zhao, H., Li, X., He, M., Wang, J., and Fan, J. Cross-domain recommendation via progressive structural alignment. IEEE Transactions on Knowledge and Data Engineering, 2023 b
2023
-
[64]
Asymmetric double-winged multi-view clustering network for exploring diverse and consistent information
Zheng, Q., Yang, X., Wang, S., An, X., and Liu, Q. Asymmetric double-winged multi-view clustering network for exploring diverse and consistent information. Neural Networks, 179: 0 106563, 2024
2024
-
[65]
Multiple kernel clustering with neighbor-kernel subspace segmentation
Zhou, S., Liu, X., Li, M., Zhu, E., Liu, L., Zhang, C., and Yin, J. Multiple kernel clustering with neighbor-kernel subspace segmentation. IEEE transactions on neural networks and learning systems, 31 0 (4): 0 1351--1362, 2019
2019
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.