We thank the reviewer for the response.
**About MSE loss**: Many outstanding SSL methods [1,2,4] use MSE loss on unlabeled data, and with a similar idea MixMatch [3] applies MSE to the mixup of labeled and unlabeled data. MSE is chosen because it effectively enforces consistency, helping to stabilize training and prevent overconfidence in noisy pseudo-labels. Studies like [1] show that MSE consistently yields slightly better results than cross-entropy (CE) loss on unlabeled data. The table below highlights the effect of replacing MSE loss with CE loss in our RLGSSL in terms of test errors. These results are consistent with the studies in [1]:
| Dataset | CIFAR-100 (4000) | CIFAR-100 (10000) |
|-----------------|------------------------|-------------------|
| RLGSSL | ${36.92}_{(0.45)}$ |${29.12}_{(0.20)}$ |
| R(MSE->CE) | ${37.14}_{(0.53)}$ |${31.37}_{(0.52)}$ |
**About improvement on CIFAR-100**: The improvement on CIFAR-100 dataset is not marginal. As detailed in Table 1 of our manuscript, RLGSSL outperforms the second-best method, ICT, by 3.15% and 3.12% on CIFAR-100 with 4000 and 10000 labeled samples, respectively. Furthermore, in Table 3, using a WRN backbone, RLGSSL surpasses the state-of-the-art MarginMatch by 1.24% with only 2500 labeled samples on CIFAR-100. This consistent outperformance across different datasets and experimental setups clearly demonstrates the significant advantage of our proposed algorithm, RLGSSL.
**About robustness and generalization**: Our model demonstrates strong generalizability and robustness, evident in its consistent performance with the lowest average test error and low standard deviation across multiple datasets. RLGSSL not only achieves significant improvements on CIFAR-100 but also outperforms state-of-the-art methods on other datasets. This consistent success across various datasets highlights the robustness and adaptability of our model, confirming its effectiveness in varied scenarios.
[1] Laine, Samuli, and Timo Aila. "Temporal Ensembling for Semi-Supervised Learning." International Conference on Learning Representations. 2017.
[2] Tarvainen, Antti, and Harri Valpola. "Mean teachers are better role models: Weight-averaged consistency targets improve semi-supervised deep learning results." Advances in neural information processing systems 30 (2017).
[3] Berthelot, David, et al. "Mixmatch: A holistic approach to semi-supervised learning." Advances in neural information processing systems (NeurIPS), 2019.
[4] Verma, Vikas, et al. "Interpolation consistency training for semi-supervised learning." Neural Networks 145 (2022)