REVIEW 4 major objections 6 minor 55 references
IceBerg: Debiased Self-Training for Class-Imbalanced Node Classification
T0 review · 4 major / 6 minor · reviewed 2026-08-08 · deepseek-v4-flash
Pith's one-line read Rebalancing pseudo-labels by their per-class counts lets GNNs turn unlabeled nodes into a cure for both class imbalance and extreme label scarcity.
desk verdict A practical pseudo-label rebalancing module that shows consistent empirical gains, but the debiasing story is unverified and the added propagation component does not consistently beat the simpler module. 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 Double Balancing, a plug-in that computes a dynamic confidence threshold as the mean model confidence on unlabeled nodes, counts pseudo-labels per class to obtain $\pi_c$, and adds to the unsupervised loss a balanced-softmax term on adjusted logits $q[c] = f_\theta(v)[c] + \mu \log \pi_c$, with an optional symmetric cross-entropy term for noise tolerance. The supporting machinery is the propagation-then-transformation (PPTT) architecture: node features are diffused over many hops by a personalised-PageRank-style update before a simple MLP classifier is trained, so supervision propagates farther and the propagation itself can be precomputed once. The two pieces work together because pseudo-labels enlarge the set of propagation sources while decoupling enlarges the distance each source can reach.
What would settle it
On a graph with known full labels, compute the true per-class distribution of the unlabeled set and compare it with the pseudo-label counts $\pi_c$ from a majority-biased model; if the discrepancy is large and rebalancing against the true counts no longer improves, or hurts, balanced accuracy relative to using the model's counts, then the claimed debiasing mechanism is not what carries the gain.
Extended reading notes
Core claim
The discovery is that the class distribution of unlabeled nodes, though unknown, can be usefully estimated by the pseudo-labels the model itself produces, and that this estimate is enough to debias self-training. In Double Balancing, a dynamic confidence threshold selects pseudo-labels, their per-class counts form an estimated distribution, and the unsupervised loss is reweighted by adjusting logits with the log of those counts and applying balanced softmax. Because the model is majority-biased, majority classes generate both more pseudo-labels and higher-confidence ones; rebalancing the unsupervised term against the estimated counts counteracts the Matthew effect, in which the rich classes get richer. The paper further claims that heavily imbalanced minority classes face a hidden few-shot problem, and that disentangling propagation from transformation, then increasing propagation hops with a precomputed diffusion process, lets weak supervision reach distant nodes without over-smoothing. On this reading, IceBerg is not a new GNN but a debiased self-training wrapper plus an architectural decoupling, and the paper reports consistent gains across nine datasets and imbalance ratios of 10 and 20.
Load-bearing premise
The load-bearing premise is that the per-class counts of pseudo-labels on unlabeled nodes accurately estimate the true class distribution of the unlabeled set, so that rebalancing the loss against those counts corrects rather than amplifies the model's bias.
Editorial extensions
If this is right
- Adding Double Balancing on top of any of the seven base balancing methods improves average balanced accuracy on Cora, CiteSeer, PubMed, and CS; on Cora at imbalance ratio 10 the average gain over the base model is about +6.85 points for DB and +8.35 for the full IceBerg.
- In few-shot node classification with 1, 2, 3, and 5 labels per class, IceBerg reports the best accuracy on Cora, CiteSeer, and PubMed, with the largest margin appearing at one label per class.
- The dynamic threshold lets the model use a large fraction of unlabeled nodes early in training while keeping pseudo-label accuracy high; on Cora at imbalance ratio 20 it reaches roughly 60% utilization and 90% pseudo-label accuracy around epoch 100.
- Because propagation is precomputed and decoupled from the trained MLP, IceBerg can match or beat the base model's training time despite using pseudo-labels.
- The gains persist on large graphs such as Physics, ogbn-arxiv, and CoraFull and on heterophilic graphs such as Penn94 and Roman-Empire.
Reading between the lines
- If the pseudo-label counts inherit strong majority bias, the estimated distribution $\pi_c$ will under-count minority classes; the paper's noise-tolerant term smooths the loss but does not fix a biased count itself, so the mechanism's ceiling is set by pseudo-label accuracy.
- The same recipe, count pseudo-labels per class and rebalance the unsupervised loss with a balanced objective, applies to any self-training pipeline; a direct test would be to plug Double Balancing into a non-graph semi-supervised classifier with a class-imbalanced unlabeled pool.
- The 'tip of the iceberg' framing implies that class imbalance and label scarcity are partly the same failure: supervision does not reach enough nodes. If so, the value of the unlabeled loss should grow as labels become rarer, which the paper's few-shot results support and which is testable by ablating the weight $\lambda$ on the unsupervised term.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes IceBerg, a framework for class-imbalanced and few-shot semi-supervised node classification on graphs. The method consists of two components: (i) Double Balancing (DB), a plug-in module that computes confidence-thresholded pseudo-labels on unlabeled nodes, estimates the per-class pseudo-label distribution (Eqs. 5-6), and reweights the unsupervised cross-entropy loss with a balanced-softmax logit adjustment (Eqs. 7-8), optionally augmented by a symmetric cross-entropy noise-tolerance term (Eq. 9); and (ii) a decoupled propagation-then-transformation backbone (Eqs. 10-11) that performs many steps of graph diffusion before an MLP classifier, intended to propagate weak supervision to distant nodes. The paper reports experiments on nine datasets across homogeneous, heterogeneous, large, and few-shot settings, comparing DB and IceBerg as plug-ins over seven base balancing methods and against several CIGL and FSGL baselines, together with efficiency studies and visualizations.
Significance. If the reported gains are reproducible, the contribution is practically significant: DB is a genuinely simple plug-in that appears to improve balanced accuracy and macro-F1 consistently over base methods (e.g., Table 2 average improvements of +5.80 to +13.96 for DB, and larger gains in the heavy-imbalance Table 4). The release of code, the integration of many baselines into one framework, and the evaluation across nine datasets are notable strengths. However, the central 'debiased' claim rests on an unverified estimate of the unlabeled class distribution formed from the model's own pseudo-labels, and the main comparative tables report only means over ten runs without standard deviations or significance tests. The significance of the contribution is therefore conditional on resolving those two concerns.
major comments (4)
- [Section 3.1, Eqs. (5)-(8)] The debiasing mechanism is self-referential: the class-frequency estimate pi_c is computed from the model's own pseudo-labels after confidence thresholding, and Section 3.2 and Appendix A.1 document that the labeled and unlabeled distributions differ and that selection bias is severe in the heavy-imbalance/few-shot regime. The paper asserts (Section 3.1) that 'pseudo labels can serve as a good estimate' of the class distribution, but it never compares pi_c to the true class counts of the unlabeled set. Because the model is majority-biased (the Matthew effect) and because thresholding preferentially admits high-confidence, majority-class nodes, pi_c is a biased statistic and the pseudo-labeled set is not a random draw from V_U. The noise-tolerant term in Eq. (9) mitigates label noise but does not correct a biased class-frequency estimate. Please provide empirical validation of pi_c on datasets with known unlabeled labels, or an oracle-pi_c ablation, or a theoretical argument that the bias cancels under the logit adjustment in Eq. (8).
- [Tables 2 and 4] All main results are reported only as means over ten runs, with no standard deviations or significance tests. Several comparisons that are load-bearing for the paper's claims are numerically small or inconsistent: in Table 2, DB and IceBerg are nearly tied on PubMed (77.17 vs. 77.48 average balanced accuracy) and on CS (88.71 vs. 88.47); in Table 4, IceBerg is slightly below DB on PubMed (76.30 vs. 76.38) and on CS (84.41 vs. 84.52). Without variance information, the claims that IceBerg 'further boosts' DB and achieves state-of-the-art performance are not supported. Please report standard deviations or paired significance tests for the core comparisons.
- [Section 3.2, Tables 1-4] The contribution of the decoupled propagation component is not isolated in the main experiments. Table 1 shows that increasing propagation hops improves balanced accuracy on Cora and CiteSeer for one unspecified model, and Table 3 compares IceBerg with DB in the few-shot setting, but IceBerg always combines DB with the decoupled architecture. There is no ablation that adds the decoupled propagation alone to the same base model. Given that several IceBerg-vs-DB differences are small or negative on PubMed and CS, the paper should report BASE, BASE+propagation, BASE+DB, and IceBerg under the same protocol across datasets and imbalance ratios to support the claimed benefit of propagation.
- [Section 4.4 and implementation details] The method introduces several free parameters -- mu (Eq. 8), beta (Eq. 9), lambda, alpha, and T (Eqs. 10-11) -- but the 'parameter study' in Section 4.4 only examines the dynamic threshold (Figure 3) and does not report sensitivity to any of these parameters. Since the paper emphasizes that DB is a simple plug-and-play module with 'almost no additional training overhead', the robustness of the reported gains to mu, beta, and T should be demonstrated, at least on one or two representative datasets.
minor comments (6)
- [Eq. (6)] Equation (6) omits the class index: pi_c should be defined as the count of pseudo-labels assigned to class c that also pass the threshold, for example pi_c = sum_j 1(pred_j = c and max(f_theta(v_j)) >= tau'), since the quantity is used per class in Eq. (8).
- [Section 2] The sentence 'According to the ording the model arrages theP and T operations' is garbled and should be rewritten.
- [Section 3.2 heading] The heading 'Propagation then Tramsformation' contains a typo; it should read 'Transformation'.
- [Table 2] The CiteSeer IceBerg macro-F1 entry '62.83±18.22' appears to be a formatting error carried over from another column; the reported average should be checked and corrected.
- [Tables 2 and 6] The appendices use both 'OOT' (out-of-time) and 'OOM' (out-of-memory) for missing experimental entries; the notation should be standardized, as Table 6 uses OOM where Table 2 uses OOT.
- [Section 3.2, Figure 2] The two-moon toy experiment is described only qualitatively; a quantitative description of the setup, the plotted quantities, and the observed effect would make the selection-bias argument easier to evaluate.
Circularity Check
No significant circularity: the pseudo-label-based balancing is a self-training design, and the central performance claim is validated on held-out labels.
full rationale
The derivation chain has two components: Double Balancing, which counts model-generated pseudo-labels (Eqs. 5-6) and uses those counts in a balanced-softmax logit adjustment (Eqs. 7-8), and decoupled propagation with diffused features (Eqs. 10-11). The only self-referential element is that the balancing weights pi_c are computed from the model's own pseudo-labels. However, this is an explicit design feature of self-training rather than a circular derivation: the paper does not define its target quantity in terms of pi_c, and it does not relabel a fitted parameter as a prediction. The central empirical claim, that IceBerg improves balanced accuracy and macro-F1, is evaluated against held-out ground-truth labels in Tables 2-4 and 6-7, so it has independent content. The paper explicitly states the load-bearing assumption that pseudo labels estimate the class distribution ('Surprisingly, we found that the pseudo labels generated by the model can serve as a good estimation of unlabeled set class distribution', Section 1) and also acknowledges the risk of confirmation bias (Section 3.1) and the failure of p_l(x|y) = p_u(x|y) = p_t(x|y) in heavy-imbalance and few-shot regimes (Section 3.2). These are stated limitations and risk factors, not hidden circularity: no equation reduces to its own input by construction. The self-citations, including DR-GST [22] with overlapping authors, are used as baselines or general motivation and are not load-bearing for the framework's derivation. I therefore find no significant circularity.
Assumptions & free parameters
free parameters (5)
- mu (logit adjustment strength) =
not reported
- beta (noise-tolerant trade-off) =
not reported
- lambda (unsupervised loss weight) =
not reported
- alpha (restart probability) =
not reported
- T (number of propagation steps) =
not reported, Table 1 suggests 10-14
assumptions (5)
- ad hoc to paper Pseudo labels generated by the model accurately estimate the unlabeled class distribution (pi_c).
- domain assumption Class conditional distributions of labeled, unlabeled, and test sets are consistent (p_l(x|y) = p_u(x|y) = p_t(x|y)).
- domain assumption The target test class distribution is balanced (p_t(y) uniform).
- domain assumption Model degradation in deep GNNs is primarily caused by transformations, not propagation.
- ad hoc to paper The dynamic threshold tau' = mean confidence selects pseudo labels with sufficiently high accuracy.
Cite this review
Pith. "Pith review of IceBerg: Debiased Self-Training for Class-Imbalanced Node Classification." pith.science (2026). https://pith.science/paper/Y65VI26F
@misc{pith2026250206280,
author = {Pith},
title = {Pith review of: IceBerg: Debiased Self-Training for Class-Imbalanced Node Classification},
year = {2026},
howpublished = {\url{https://pith.science/paper/Y65VI26F}},
note = {Machine review of arXiv:2502.06280}
}
read the original abstract
Graph Neural Networks (GNNs) have achieved great success in dealing with non-Euclidean graph-structured data and have been widely deployed in many real-world applications. However, their effectiveness is often jeopardized under class-imbalanced training sets. Most existing studies have analyzed class-imbalanced node classification from a supervised learning perspective, but they do not fully utilize the large number of unlabeled nodes in semi-supervised scenarios. We claim that the supervised signal is just the tip of the iceberg and a large number of unlabeled nodes have not yet been effectively utilized. In this work, we propose IceBerg, a debiased self-training framework to address the class-imbalanced and few-shot challenges for GNNs at the same time. Specifically, to figure out the Matthew effect and label distribution shift in self-training, we propose Double Balancing, which can largely improve the performance of existing baselines with just a few lines of code as a simple plug-and-play module. Secondly, to enhance the long-range propagation capability of GNNs, we disentangle the propagation and transformation operations of GNNs. Therefore, the weak supervision signals can propagate more effectively to address the few-shot issue. In summary, we find that leveraging unlabeled nodes can significantly enhance the performance of GNNs in class-imbalanced and few-shot scenarios, and even small, surgical modifications can lead to substantial performance improvements. Systematic experiments on benchmark datasets show that our method can deliver considerable performance gain over existing class-imbalanced node classification baselines. Additionally, due to IceBerg's outstanding ability to leverage unsupervised signals, it also achieves state-of-the-art results in few-shot node classification scenarios. The code of IceBerg is available at: https://github.com/ZhixunLEE/IceBerg.
Figures
Figures from the paper (3 more)
Reference graph
Works this paper leans on
-
[1]
Eric Arazo, Diego Ortego, Paul Albert, Noel E O’Connor, and Kevin McGuinness
-
[2]
Deli Chen, Yankai Lin, Guangxiang Zhao, Xuancheng Ren, Peng Li, Jie Zhou, and Xu Sun. 2021. Topology-imbalance learning for semi-supervised node classifica- tion. Advances in Neural Information Processing Systems 34 (2021), 29885–29897
work page 2021
-
[3]
Yin Cui, Menglin Jia, Tsung-Yi Lin, Yang Song, and Serge Belongie. 2019. Class- balanced loss based on effective number of samples. InProceedings of the IEEE/CVF conference on computer vision and pattern recognition . 9268–9277
work page 2019
-
[4]
Kaize Ding, Xiaoxiao Ma, Yixin Liu, and Shirui Pan. 2024. Divide and Denoise: Em- powering Simple Models for Robust Semi-Supervised Node Classification against Label Noise. In Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and Data Mining . 574–584
work page 2024
-
[5]
Kaize Ding, Jianling Wang, James Caverlee, and Huan Liu. 2022. Meta propagation networks for graph few-shot semi-supervised learning. InProceedings of the AAAI conference on artificial intelligence , Vol. 36. 6524–6531
work page 2022
-
[6]
Yingtong Dou, Zhiwei Liu, Li Sun, Yutong Deng, Hao Peng, and Philip S Yu. 2020. Enhancing graph neural network-based fraud detectors against camouflaged fraudsters. In Proceedings of the 29th ACM international conference on information & knowledge management. 315–324
2020
-
[7]
Saurabh Garg, Yifan Wu, Sivaraman Balakrishnan, and Zachary Lipton. 2020. A unified view of label shift estimation. Advances in Neural Information Processing Systems 33 (2020), 3290–3300
work page 2020
-
[8]
Johannes Gasteiger, Aleksandar Bojchevski, and Stephan Günnemann. 2018. Predict then propagate: Graph neural networks meet personalized pagerank. arXiv preprint arXiv:1810.05997 (2018)
arXiv 2018
Show all 55 references
-
[9]
Youngkyu Hong, Seungju Han, Kwanghee Choi, Seokjun Seo, Beomsu Kim, and Buru Chang. 2021. Disentangling label distribution for long-tailed visual recognition. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition. 6626–6636
2021
-
[10]
Muhammad Abdullah Jamal, Matthew Brown, Ming-Hsuan Yang, Liqiang Wang, and Boqing Gong. 2020. Rethinking class-balanced methods for long-tailed visual recognition from a domain adaptation perspective. InProceedings of the IEEE/CVF conference on computer vision and pattern reco...
2020
-
[11]
Nathalie Japkowicz and Shaju Stephen. 2002. The class imbalance problem: A systematic study. Intelligent data analysis 6, 5 (2002), 429–449
2002
-
[12]
Bingyi Kang, Saining Xie, Marcus Rohrbach, Zhicheng Yan, Albert Gordo, Jiashi Feng, and Yannis Kalantidis. 2019. Decoupling representation and classifier for long-tailed recognition. arXiv preprint arXiv:1910.09217 (2019)
2019 arXiv
-
[13]
Qimai Li, Zhichao Han, and Xiao-Ming Wu. 2018. Deeper insights into graph convolutional networks for semi-supervised learning. In Proceedings of the AAAI conference on artificial intelligence , Vol. 32
2018
-
[14]
Wen-Zhi Li, Chang-Dong Wang, Hui Xiong, and Jian-Huang Lai. 2023. Graphsha: Synthesizing harder samples for class-imbalanced node classification. In Pro- ceedings of the 29th ACM SIGKDD Conference on Knowledge Discovery and Data Mining. 1328–1340
2023
-
[15]
Yuhan Li, Zhixun Li, Peisong Wang, Jia Li, Xiangguo Sun, Hong Cheng, and Jeffrey Xu Yu. 2023. A survey of graph meets large language model: Progress and future directions. arXiv preprint arXiv:2311.12399 (2023)
2023 arXiv
-
[16]
Yuhan Li, Peisong Wang, Zhixun Li, Jeffrey Xu Yu, and Jia Li. 2024. Zerog: Investigating cross-dataset zero-shot transferability in graphs. In Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and Data Mining . 1725–1735
2024
-
[17]
Yuhan Li, Peisong Wang, Xiao Zhu, Aochuan Chen, Haiyun Jiang, Deng Cai, Victor Wai Kin Chan, and Jia Li. 2024. Glbench: A comprehensive benchmark for graph with large language models. arXiv preprint arXiv:2407.07457 (2024)
2024 arXiv
-
[18]
Zhixun Li, Dingshuo Chen, Qiang Liu, and Shu Wu. 2022. The devil is in the conflict: Disentangled information graph neural networks for fraud detection. In 2022 IEEE International Conference on Data Mining (ICDM) . IEEE, 1059–1064
2022
-
[19]
Zhixun Li, Yushun Dong, Qiang Liu, and Jeffrey Xu Yu. 2024. Rethinking Fair Graph Neural Networks from Re-balancing. In Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and Data Mining . 1736–1745
2024
-
[20]
Zhixun Li, Xin Sun, Yifan Luo, Yanqiao Zhu, Dingshuo Chen, Yingtao Luo, Xi- angxin Zhou, Qiang Liu, Shu Wu, Liang Wang, et al . 2024. GSLB: the graph structure learning benchmark. Advances in Neural Information Processing Systems 36 (2024)
2024
-
[21]
T Lin. 2017. Focal Loss for Dense Object Detection.arXiv preprint arXiv:1708.02002 (2017)
2017 arXiv
-
[22]
Hongrui Liu, Binbin Hu, Xiao Wang, Chuan Shi, Zhiqiang Zhang, and Jun Zhou
-
[23]
Meng Liu, Hongyang Gao, and Shuiwang Ji. 2020. Towards deeper graph neural networks. In Proceedings of the 26th ACM SIGKDD international conference on knowledge discovery & data mining . 338–348
2020
-
[24]
Yixin Liu, Kaize Ding, Jianling Wang, Vincent Lee, Huan Liu, and Shirui Pan. 2023. Learning strong graph neural networks with weak information. In Proceedings of the 29th ACM SIGKDD Conference on Knowledge Discovery and Data Mining . 1559–1571
2023
-
[25]
Zhining Liu, Zhichen Zeng, Ruizhong Qiu, Hyunsik Yoo, David Zhou, Zhe Xu, Yada Zhu, Kommy Weldemariam, Jingrui He, and Hanghang Tong. 2023. Topo- logical augmentation for class-imbalanced node classification. arXiv preprint arXiv:2308.14181 (2023)
2023 arXiv
-
[26]
Yuankai Luo, Lei Shi, and Xiao-Ming Wu. 2024. Classic GNNs are Strong Baselines: Reassessing GNNs for Node Classification.arXiv preprint arXiv:2406.08993 (2024)
2024 arXiv
-
[27]
Xiaoxiao Ma, Ruikun Li, Fanzhen Liu, Kaize Ding, Jian Yang, and Jia Wu. 2024. Graph Anomaly Detection with Few Labels: A Data-Centric Approach. In Pro- ceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and Data Mining. 2153–2164
2024
-
[28]
Joonhyung Park, Jaeyun Song, and Eunho Yang. 2021. Graphens: Neighbor-aware ego network synthesis for class-imbalanced node classification. In International conference on learning representations
2021
-
[29]
Liang Qu, Huaisheng Zhu, Ruiqi Zheng, Yuhui Shi, and Hongzhi Yin. 2021. Im- gagn: Imbalanced network embedding via generative adversarial graph networks. In Proceedings of the 27th ACM SIGKDD conference on knowledge discovery & data mining. 1390–1398
2021
-
[30]
Jiawei Ren, Cunjun Yu, Xiao Ma, Haiyu Zhao, Shuai Yi, et al . 2020. Balanced meta-softmax for long-tailed visual recognition. Advances in neural information processing systems 33 (2020), 4175–4186
2020
-
[31]
Min Shi, Yufei Tang, Xingquan Zhu, David Wilson, and Jianxun Liu. 2020. Multi- class imbalanced graph convolutional network learning. In Proceedings of the Twenty-Ninth International Joint Conference on Artificial Intelligence (IJCAI-20)
2020
-
[32]
Jaeyun Song, Joonhyung Park, and Eunho Yang. 2022. TAM: topology-aware margin loss for class-imbalanced node classification. In International Conference on Machine Learning. PMLR, 20369–20383
2022
-
[33]
Ke Sun, Zhouchen Lin, and Zhanxing Zhu. 2020. Multi-stage self-supervised learning for graph convolutional networks on graphs with few labeled nodes. In Proceedings of the AAAI conference on artificial intelligence , Vol. 34. 5892–5899
2020
-
[34]
Sheng Wan, Yibing Zhan, Liu Liu, Baosheng Yu, Shirui Pan, and Chen Gong. 2021. Contrastive graph poisson networks: Semi-supervised learning with extremely limited labels. Advances in Neural Information Processing Systems 34 (2021), 6316–6327
2021
-
[35]
Fali Wang, Tianxiang Zhao, and Suhang Wang. 2024. Distribution Consistency based Self-Training for Graph Neural Networks with Sparse Labels. InProceedings of the 17th ACM International Conference on Web Search and Data Mining . 712– 720
2024
-
[36]
Kun Wang, Guohao Li, Shilong Wang, Guibin Zhang, Kai Wang, Yang You, Jun- feng Fang, Xiaojiang Peng, Yuxuan Liang, and Yang Wang. 2024. The Snowflake Hypothesis: Training and Powering GNN with One Node One Receptive Field. In Proceedings of the 30th ACM SIGKDD Conference on Kn...
2024
-
[37]
Yisen Wang, Xingjun Ma, Zaiyi Chen, Yuan Luo, Jinfeng Yi, and James Bailey. 2019. Symmetric cross entropy for robust learning with noisy labels. In Proceedings of the IEEE/CVF international conference on computer vision . 322–330
2019
-
[38]
Felix Wu, Amauri Souza, Tianyi Zhang, Christopher Fifty, Tao Yu, and Kilian Weinberger. 2019. Simplifying graph convolutional networks. In International conference on machine learning . PMLR, 6861–6871
2019
-
[39]
Jing Xu, Xu Luo, Xinglin Pan, Yanan Li, Wenjie Pei, and Zenglin Xu. 2022. Alle- viating the sample selection bias in few-shot learning by removing projection to the centroid. Advances in neural information processing systems 35 (2022), 21073–21086
2022
-
[40]
Yihao Xue, Kyle Whitecross, and Baharan Mirzasoleiman. 2022. Investigating why contrastive learning benefits robustness against label noise. In International Conference on Machine Learning . PMLR, 24851–24871
2022
-
[41]
Liang Yan, Shengzhong Zhang, Bisheng Li, Min Zhou, and Zengfeng Huang. 2023. UNREAL: Unlabeled Nodes Retrieval and Labeling for Heavily-imbalanced Node Classification. arXiv preprint arXiv:2303.10371 (2023)
2023
-
[42]
Zhilin Yang, William Cohen, and Ruslan Salakhudinov. 2016. Revisiting semi- supervised learning with graph embeddings. In International conference on ma- chine learning. PMLR, 40–48
2016
-
[43]
Guibin Zhang, Haonan Dong, Yuchen Zhang, Zhixun Li, Dingshuo Chen, Kai Wang, Tianlong Chen, Yuxuan Liang, Dawei Cheng, and Kun Wang. 2024. GDeR: Safeguarding Efficiency, Balancing, and Robustness via Prototypical Graph Prun- ing. arXiv preprint arXiv:2410.13761 (2024)
2024 arXiv
-
[44]
Guibin Zhang, Xiangguo Sun, Yanwei Yue, Chonghe Jiang, Kun Wang, Tianlong Chen, and Shirui Pan. 2024. Graph sparsification via mixture of graphs. arXiv preprint arXiv:2405.14260 (2024)
2024 arXiv
-
[45]
Guibin Zhang, Yanwei Yue, Kun Wang, Junfeng Fang, Yongduo Sui, Kai Wang, Yuxuan Liang, Dawei Cheng, Shirui Pan, and Tianlong Chen. 2024. Two heads are better than one: Boosting graph sparse training via semantic and topological awareness. arXiv preprint arXiv:2402.01242 (2024)
2024 arXiv
-
[46]
Qinggang Zhang, Shengyuan Chen, Yuanchen Bei, Zheng Yuan, Huachi Zhou, Zijin Hong, Junnan Dong, Hao Chen, Yi Chang, and Xiao Huang. 2025. A Sur- vey of Graph Retrieval-Augmented Generation for Customized Large Language Models. arXiv preprint arXiv:2501.13958 (2025). WWW ’25, A...
2025
-
[47]
Wentao Zhang, Xinyi Gao, Ling Yang, Meng Cao, Ping Huang, Jiulong Shan, Hongzhi Yin, and Bin Cui. 2024. BIM: Improving Graph Neural Networks with Balanced Influence Maximization. In 2024 IEEE 40th International Conference on Data Engineering (ICDE). IEEE, 2931–2944
2024
-
[48]
Wentao Zhang, Zeang Sheng, Ziqi Yin, Yuezihan Jiang, Yikuan Xia, Jun Gao, Zhi Yang, and Bin Cui. 2022. Model degradation hinders deep graph neural networks. In Proceedings of the 28th ACM SIGKDD conference on knowledge discovery and data mining. 2493–2503
2022
-
[49]
Chuang Zhao, Xinyu Li, Ming He, Hongke Zhao, and Jianping Fan. 2023. Sequen- tial Recommendation via an Adaptive Cross-domain Knowledge Decomposition. In Proceedings of the 32nd ACM International Conference on Information and Knowledge Management. 3453–3463
2023
-
[50]
Chuang Zhao, Xing Su, Ming He, Hongke Zhao, Jianping Fan, and Xiaomeng Li. 2024. Collaborative Knowledge Fusion: A Novel Approach for Multi-task Recommender Systems via LLMs. arXiv preprint arXiv:2410.20642 (2024)
2024 arXiv
-
[51]
Tianxiang Zhao, Xiang Zhang, and Suhang Wang. 2021. Graphsmote: Imbalanced node classification on graphs with graph neural networks. In Proceedings of the 14th ACM international conference on web search and data mining . 833–841
2021
-
[52]
Mengting Zhou and Zhiguo Gong. 2023. GraphSR: a data augmentation algorithm for imbalanced node classification. In Proceedings of the AAAI Conference on Artificial Intelligence, Vol. 37. 4954–4962
2023
-
[53]
Shuang Zhou, Xiao Huang, Ninghao Liu, Huachi Zhou, Fu-Lai Chung, and Long- Kai Huang. 2023. Improving generalizability of graph anomaly detection models via data augmentation. IEEE Transactions on Knowledge and Data Engineering 35, 12 (2023), 12721–12735. IceBerg: Debiased Sel...
2023
-
[2020]
In 2020 International joint conference on neural networks (IJCNN)
Pseudo-labeling and confirmation bias in deep semi-supervised learning. In 2020 International joint conference on neural networks (IJCNN) . IEEE, 1–8
2020
-
[2022]
In Proceedings of the ACM Web Conference 2022
Confidence may cheat: Self-training on graph neural networks under distribution shift. In Proceedings of the ACM Web Conference 2022 . 1248–1258
2022
Reviewed August 8, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.