Pith. sign in

REVIEW 3 major objections 4 minor 32 references

Adversarial Training in Low-Label Regimes with Margin-Based Interpolation

T0 review · 3 major / 4 minor · reviewed 2026-08-12 · deepseek-v4-flash

Pith's one-line read Adversarial training in low-label regimes improves when each training example is an interpolation that crosses the decision boundary by a controlled margin rather than a fixed-radius attack.

desk verdict Modest but mostly solid incremental result; the load-bearing Assumption 2 needs a direct test before the margin-interpolation story is fully credible. read the letter →

arxiv 2411.17959 v1 pith:RSUKGDII submitted 2024-11-27 cs.LG cs.CRcs.CV

classification cs.LGcs.CRcs.CV
keywords semi-supervisedlearningadversarialtraininglow-labelregimemargin-basedinterpolationglobalepsilonschedulingpseudo-labelingrobustaccuracyAutoAttack
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 claims that semi-supervised adversarial training in low-label regimes can be improved by choosing, for each training point, an adversarial example that crosses the decision boundary by a small controlled margin, instead of using a fixed perturbation radius for every point. The proposed method, SSAT-MBI, first generates a PGD adversarial example inside a global epsilon-ball, then linearly interpolates between the clean point and that example, using a binary search to find the interpolation that keeps the margin below a preset threshold while using the strongest allowed perturbation. A global epsilon schedule progressively raises the perturbation budget during training, with an optional temporary overshoot beyond the final budget. On CIFAR-10, SVHN, and CIFAR-100 with 8% (or 1.4%) of labels, the paper reports higher robust accuracy under PGD-10, PGD-20, PGD-40, and AutoAttack than UAT++, RST, and SRST-AWR, with clean accuracy also improved in most comparisons. If the claim holds, robust classifiers can be trained from mostly unlabeled data without sacrificing natural accuracy.

What carries the argument

The load-bearing object is the margin function $d(x^{\mathrm{adv}})$: the difference between the model's highest class score and its score for the ground-truth class, or for unlabeled points the pseudo-label-weighted score. For a clean point $x_i$ and a PGD point $x^{\mathrm{pgd}}_i$, the method considers the line segment $x^{\mathrm{adv}}_i(\alpha) = \alpha x^{\mathrm{pgd}}_i + (1-\alpha) x_i$ and, assuming $d$ grows with $\alpha$, runs a $K$-step binary search to find the largest $\alpha$ with $d \le \rho$. The chosen interpolated example is therefore the strongest perturbation that still crosses the boundary by the desired margin. Assumption 2 states that this interpolated example is as informative for the training loss as a PGD example generated with the same norm, so no extra PGD run is needed. A separate global epsilon schedule (LINEAR-$t$ or CURIOUS-$(\gamma,t)$) sets the budget $\epsilon_{\max}$ per epoch, letting training start easy and become harder, with CURIOUS temporarily exceeding the final budget.

What would settle it

On a trained network, take a set of correctly classified training points, run PGD to misclassification, and evaluate the margin $d(\alpha)$ on a fine grid of $\alpha$ for each point; then measure the fraction of points for which $d$ is not non-decreasing over $[0,1]$ or for which the binary-search $\hat{\alpha}$ differs from the grid-optimal $\hat{\alpha}$ by more than a small tolerance. If that fraction is large, or if replacing binary search with an exhaustive search changes robustness by more than the reported gains, the monotonicity mechanism and the margin-based selection are not what drives the improvement.

Watch

Extended reading notes

Core claim

The paper's central claim is that the inner maximization phase of semi-supervised adversarial training, not only the outer loss, is where robustness and natural accuracy can both be gained. SSAT-MBI replaces the usual fixed-$\epsilon$ PGD example with an interpolated example $x^{\mathrm{adv}}_i(\hat{\alpha}) = \hat{\alpha} x^{\mathrm{pgd}}_i + (1-\hat{\alpha}) x_i$, selecting $\hat{\alpha}$ so that the margin $d(\alpha; x_i, x^{\mathrm{pgd}}_i) = \max_k [s]_k - \sum_j \tilde{y}_{i,j} [s]_j$ stays at a threshold $\rho$. The selection is justified by two assumptions: the margin is approximately non-decreasing in $\alpha$, and the interpolated point is as effective for training as a freshly generated PGD point with the same perturbation norm. Combined with global epsilon scheduling, this yields SSAT-MBI and its AWR-weighted variant, which the experiments report as improving both natural accuracy and robustness against PGD-10, PGD-20, PGD-40, and AutoAttack compared with UAT++, RST, and SRST-AWR across CIFAR-10, SVHN, and CIFAR-100.

Load-bearing premise

The method rests on the assumption, supported in the paper only by empirical curves on three datasets, that for most training points the misclassification margin grows monotonically as the interpolation moves from the clean point to the PGD point, which is what makes the binary search return a meaningful interpolation strength.

Editorial extensions

If this is right

  • Robustness gains are available without redesigning the outer loss: the interpolation trick is applied in the inner-maximization step and can be grafted onto UAT++, RST, or SRST-AWR-style objectives.
  • Using interpolated examples consistently improves both robustness and clean accuracy across the ablation settings in the paper, meaning the margin control itself, not only the schedule, carries part of the gain.
  • The CURIOUS schedule, which temporarily raises $\epsilon_{\max}$ above the final $8/255$, improves robustness against AutoAttack, suggesting that exposure to stronger-than-final perturbations helps against strong attacks.
  • In a fully labeled setting, the same margin-based interpolation on top of TRADES outperforms TRADES and TRADES+FAT on PGD-20 and AutoAttack, so the mechanism is not limited to semi-supervised training.
  • The method adds only a small per-epoch overhead ($K$ forward passes per point), so the robustness gains do not require extra PGD attacks.

Reading between the lines

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

  • The margin threshold $\rho$ is a tunable knob on the robustness-accuracy trade-off; the sensitivity analysis suggests that a mid-range $\rho$ balances PGD and AutoAttack, which could be used to adjust an existing trained defense without retraining the core.
  • Because the method only needs a margin function and a binary search, it could be adapted to other threat models such as $\ell_2$ or $\ell_1$ balls, though the monotonicity assumption would need to be re-checked there.
  • If the monotonicity assumption degrades as training progresses or on harder data, the binary search may pick a suboptimal interpolation; measuring the violation rate per epoch could serve as an early-stopping or scheduling signal.
  • The per-sample $\hat{\alpha}$ values themselves are a free diagnostic of sample difficulty and boundary proximity, which could inform active learning or data-selection decisions in low-label settings.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

3 major / 4 minor

Summary. The paper introduces SSAT-MBI, a semi-supervised adversarial training method for low-label image classification. For each clean point, the method first runs PGD to obtain an adversarial point within an epsilon-max ball, then linearly interpolates between the clean and adversarial points and uses binary search to select the interpolated example whose softmax-based margin crosses the decision boundary by a controlled threshold rho. A global epsilon scheduling strategy (LINEAR or CURIOUS) adjusts the maximum perturbation strength over training. The method is integrated with the SRST-AWR outer objective to form SSAT-MBI-AWR. Experiments on CIFAR-10, SVHN, and CIFAR-100 compare against UAT++, RST, and SRST-AWR under PGD-10/20/40 and AutoAttack, with ablations, sensitivity analyses, hyperparameter tables, and training-time measurements. The central claim is that the proposed method improves both natural accuracy and adversarial robustness in low-label regimes.

Significance. If the empirical result holds, the paper contributes a simple and inexpensive modification to the inner maximization step of semi-supervised adversarial training: instead of using a fixed perturbation strength, it selects per-example perturbations that cross the decision boundary by a controlled margin. This is complementary to existing outer-objective designs, and the integration with SRST-AWR is a useful demonstration. The paper is careful in reporting hyperparameters, ablations, sensitivity of rho and beta, and computational overhead, and it evaluates against a strong attack suite including AutoAttack. The main weakness is that the method's mechanism rests on two empirical assumptions whose support is incomplete, and the statistical evidence for the headline claim is thinner than the text suggests.

major comments (3)
  1. [Sec. 3.1.2, Algorithm 1, Fig. 2a] Assumption 2 is load-bearing for the claim that the interpolated point x_adv_i(alpha_hat) is as effective as a PGD example at the same perturbation norm, but the only supporting evidence in Fig. 2b is a histogram of the scalar cross-entropy loss ratio. The outer objective in Eq. (14) regularizes through D_KL(p_theta(·|x_i) || p_theta(·|x_adv_i)), so the relevant quantity is the similarity of the full predictive distribution, not just the scalar CE loss; two points can have nearly equal CE loss while inducing very different KL-regularization gradients. In addition, the interpolated point is constrained to the line segment from x_i to x_pgd_i, so it explores only one direction, whereas a PGD point at epsilon_hat is free to move in any direction within the ball; the loss-ratio test does not control for this. Please add a distributional comparison (e.g., means/quantiles of D_KL(p_theta(·|x_adv_i) || p_theta(·|x_pgd_hat)) over training points) and an ablation in the style of Table 2 that replaces x_adv_i by a freshly generated PGD example at the same perturbation norm ||x_adv_i - x_i||. Without such a comparison, the paper does not establish that margin-based interpolation is preferable to simply running PGD at a matched per-example epsilon.
  2. [Sec. 4.2, App. A.3, Table 1] Assumption 1 is what justifies the binary search in Algorithm 1 returning the largest alpha with margin below rho, but the paper only states that monotonicity holds for "most" data points and illustrates this with 20 curves at two epochs. No failure rate is quantified. If the margin function is non-monotonic for a substantial fraction of points, the returned alpha_r can be far from the intended decision-boundary crossing, and the claimed sample-aware control of the margin is not realized. Please report, for CIFAR-10, SVHN, and CIFAR-100 at representative epochs, the fraction of training points for which d(alpha; xi, x_pgd_i) is non-monotonic, and/or the fraction for which the binary-search output differs from the true maximum alpha satisfying the margin constraint by more than a small tolerance (e.g., 0.05). This is needed to support the correctness of the central mechanism.
  3. [Sec. 4.2, App. A.3, Table 1] The central empirical claim of "significantly enhances both robustness and natural accuracy" is not supported by a statistical test and is contradicted in part of Table 1: on CIFAR-100, SSAT-MBI is below UAT++ on clean accuracy and PGD-10 (50.65 vs 51.72 and 35.68 vs 35.83, respectively), and most SSAT-MBI-AWR gains over SRST-AWR are under 0.7 percentage points with overlapping standard deviations from only three seeds. The statement that "most of the performance improvements exceed the standard deviation range" is not a significance test. Please report paired confidence intervals or per-metric significance tests across seeds and qualify the claim accordingly. In addition, App. A.3 states that UAT++ and RST hyperparameters were "slightly tuned for better robustness" but does not specify the tuning changes; without this information, the baseline results cannot be reproduced or verified.
minor comments (4)
  1. [Sec. 3.2] There is a typo in the text: "global espilon scheduling" should be "global epsilon scheduling."
  2. [Fig. 2 caption] Please specify in the caption what is plotted in each panel: the number of curves and sampling procedure in (a), and the definition and support of the loss-ratio histogram in (b), including how many points and which epochs are shown.
  3. [Table 5] The training-time comparison should state the hardware and software environment, since timing numbers are meaningful only relative to that setup.
  4. [App. B.5, Table 7] The DAAT comparison is taken from another paper under a different training setup; please state this limitation explicitly in the main text rather than only in the appendix.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the paper's claims are validated on held-out external benchmarks, its two assumptions are stated and directly tested, and the reference list contains no self-citations.

full rationale

This paper is an empirical methods contribution and contains no circular derivation. The two assumptions that support the algorithm (Assumption 1, that the margin d(alpha) is non-decreasing during interpolation, and Assumption 2, that the interpolated point is loss-equivalent to a fresh PGD point at the same norm) are explicitly stated in Sec. 3.1.2 and 3.1.3 and receive direct empirical tests in Fig. 2a and 2b; neither assumption is derived from, nor defined in terms of, the claimed outcome. The central claim—that SSAT-MBI and SSAT-MBI-AWR improve clean and robust accuracy over UAT++, RST, and SRST-AWR—is established by held-out test-set evaluations against external attacks (PGD-10/20/40 and AutoAttack) on CIFAR-10, SVHN, and CIFAR-100 (Table 1), with ablations (Table 2) separating the interpolation and global-epsilon-scheduling components. No parameter is fitted to the evaluation data; hyperparameters such as rho, beta, tau, and K are selected per dataset and reported in Table 8. The reference list contains no works by the present authors, so no self-citation is present, let alone load-bearing. The algorithm's use of the current model's own margin scores to select training examples is standard inner-maximization practice in adversarial training, and the evaluation metric (held-out attack accuracy) is not the quantity being optimized by the training objective, so the robustness improvement is not forced by construction. Concerns that Assumption 2 is only empirically, not theoretically, supported are legitimate correctness risks, but they are not instances of circularity.

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

The method relies on two explicitly-stated empirical assumptions about the behavior of the margin along interpolation, plus standard assumptions about pseudo-label quality and PGD. Many hyperparameters (rho, tau, beta, schedule shape) are hand-tuned per dataset, so the reported gains may partly reflect this tuning rather than a universal effect.

free parameters (5)
  • rho (margin threshold) = 0.05 or 0.1, per dataset and schedule (e.g., CIFAR-10: 0.05 from epoch 1, 0.1 from epoch 75)
    Controls how far the interpolated adversarial example crosses the decision boundary; tuned per dataset and epoch.
  • tau (softmax temperature) = 2
    Temperature in the margin definition (Eq. 9); chosen by hand and fixed across experiments.
  • beta (interpolation vs PGD loss weight) = 0.4, 0.5, or 1.0 depending on dataset
    Balances the KL terms for the interpolated example and the PGD example in Eq. 14; selected via Fig. 4 and ablation.
  • K (binary search steps) = 3 or 4
    Number of forward passes in the binary search; trades accuracy of alpha against compute.
  • CURIOUS schedule parameters (gamma, t) = gamma=1.25, t=60 or 70 (also gamma=1.5 tested)
    Sets the peak epsilon (gamma times 8/255) and the epoch at which epsilon settles back to 8/255; selected from the sweep in Table 3.
assumptions (4)
  • ad hoc to paper Assumption 1: margin d(alpha; xi, xpgd_i) is non-decreasing in alpha for most correctly classified xi whose PGD point is misclassified.
    Justifies binary search for alpha in Algorithm 1, lines 9-18 (Sec. 3.1.2). Supported only by Fig. 2a; not proven.
  • ad hoc to paper Assumption 2: interpolated example x_adv_i(alpha_hat) has approximately the same cross-entropy loss as a PGD example generated within the hat-epsilon ball (loss ratio concentrates around 1).
    Used to claim interpolation approximates the solution to Eq. (13) without additional PGD runs (Sec. 3.1.3, Fig. 2b).
  • domain assumption Pseudo-labels from a FixMatch teacher are accurate enough for margin computation on unlabeled data.
    The margin for unlabeled points (Eq. 11) replaces ground-truth labels with soft pseudo-labels; noisy pseudo-labels would misdirect the margin control.
  • domain assumption PGD-T produces an adversarial example close enough to the true worst-case within the epsilon-ball that the interpolation endpoints are valid.
    Standard assumption in adversarial training; the interpolation endpoint x_pgd_i is the PGD output.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Adversarial Training in Low-Label Regimes with Margin-Based Interpolation." pith.science (2026). https://pith.science/paper/RSUKGDII

@misc{pith2026241117959,
  author       = {Pith},
  title        = {Pith review of: Adversarial Training in Low-Label Regimes with Margin-Based Interpolation},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/RSUKGDII}},
  note         = {Machine review of arXiv:2411.17959}
}
read the original abstract

Adversarial training has emerged as an effective approach to train robust neural network models that are resistant to adversarial attacks, even in low-label regimes where labeled data is scarce. In this paper, we introduce a novel semi-supervised adversarial training approach that enhances both robustness and natural accuracy by generating effective adversarial examples. Our method begins by applying linear interpolation between clean and adversarial examples to create interpolated adversarial examples that cross decision boundaries by a controlled margin. This sample-aware strategy tailors adversarial examples to the characteristics of each data point, enabling the model to learn from the most informative perturbations. Additionally, we propose a global epsilon scheduling strategy that progressively adjusts the upper bound of perturbation strengths during training. The combination of these strategies allows the model to develop increasingly complex decision boundaries with better robustness and natural accuracy. Empirical evaluations show that our approach effectively enhances performance against various adversarial attacks, such as PGD and AutoAttack.

Figures

Figures reproduced from arXiv: 2411.17959 by the authors.

Figure 1
Figure 1. Illustration of updating the decision boundary of a classi [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. Empirical supports for Assumption 1 in Sec. [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. Global epsilon scheduling strategies. • LINEAR-t: ϵmax linearly increases from 0 to 8/255 over the first t epochs and maintains since then. It allows the model to gradually adjust to stronger perturbations and provides a more stable optimization. • CURIOUS-(γ, t): With the parameter γ > 1, ϵmax is lin￾early increased until γ · 8 255 at epoch t, and then settled at 8/255 afterwards. The temporary exposure to stronger… view at source ↗
Figures from the paper (1 more)
Figure 4
Figure 4. Figure 4: Performance of SSAT-MBI with varying β on CIFAR￾10 using WideResNet-28-5. The performance is measured by natu￾ral accuracy and robustness against PGD-20 and AutoAttack. strategies. This indicates that they can enhance adversarial robustness without compromising the nat…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

32 extracted references · 24 canonical work pages

  1. [1]

    Are labels required for improving adversarial robustness? Ad- vances in Neural Information Processing Systems, 32, 2019

    Jean-Baptiste Alayrac, Jonathan Uesato, Po-Sen Huang, Al- hussein Fawzi, Robert Stanforth, and Pushmeet Kohli. Are labels required for improving adversarial robustness? Ad- vances in Neural Information Processing Systems, 32, 2019. 1, 3, 5, 8

  2. [2]

    Square attack: a query-efficient black-box adversarial attack via random search

    Maksym Andriushchenko, Francesco Croce, Nicolas Flam- marion, and Matthias Hein. Square attack: a query-efficient black-box adversarial attack via random search. In European conference on computer vision , pages 484–501. Springer,

  3. [3]

    Curriculum adver- sarial training

    Qi-Zhi Cai, Chang Liu, and Dawn Song. Curriculum adver- sarial training. In Proceedings of the 27th International Joint Conference on Artificial Intelligence, pages 3740–3747, 2018. 6

  4. [4]

    Unlabeled data improves adver- sarial robustness

    Yair Carmon, Aditi Raghunathan, Ludwig Schmidt, John C Duchi, and Percy S Liang. Unlabeled data improves adver- sarial robustness. Advances in neural information processing systems, 32, 2019. 1, 3, 5, 8

  5. [5]

    Cat: Customized adversarial training for im- proved robustness

    Minhao Cheng, Qi Lei, Pin-Yu Chen, Inderjit Dhillon, and Cho-Jui Hsieh. Cat: Customized adversarial training for im- proved robustness. arXiv preprint arXiv:2002.06789, 2020. 6, 13, 14

  6. [6]

    Reliable evaluation of adversarial robustness with an ensemble of diverse parameter- free attacks

    Francesco Croce and Matthias Hein. Reliable evaluation of adversarial robustness with an ensemble of diverse parameter- free attacks. In International conference on machine learning, pages 2206–2216. PMLR, 2020. 1, 6, 8

  7. [7]

    Minimally distorted adversarial examples with a fast adaptive boundary attack

    Francesco Croce and Matthias Hein. Minimally distorted adversarial examples with a fast adaptive boundary attack. In International Conference on Machine Learning, pages 2196–

  8. [8]

    Mma training: Direct input space margin maximization through adversarial training

    Gavin Weiguang Ding, Yash Sharma, Kry Yik Chau Lui, and Ruitong Huang. Mma training: Direct input space margin maximization through adversarial training. In International Conference on Learning Representations, 2020. 1, 3, 6, 13, 14

Show all 32 references
  1. [9]

    Robust physical-world attacks on deep learning visual classification

    Kevin Eykholt, Ivan Evtimov, Earlence Fernandes, Bo Li, Amir Rahmati, Chaowei Xiao, Atul Prakash, Tadayoshi Kohno, and Dawn Song. Robust physical-world attacks on deep learning visual classification. In Proceedings of the IEEE conference on computer vision and pattern recognit...

  2. [10]

    Adversarial attacks against medical deep learning systems

    Samuel G Finlayson, Hyung Won Chung, Isaac S Kohane, and Andrew L Beam. Adversarial attacks against medical deep learning systems. arXiv preprint arXiv:1804.05296 ,

  3. [11]

    Goodfellow, Jonathon Shlens, and Christian Szegedy

    Ian J. Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial examples, 2015. 1

  4. [12]

    Adversarial examples are not bugs, they are features

    Andrew Ilyas, Shibani Santurkar, Dimitris Tsipras, Logan Engstrom, Brandon Tran, and Aleksander Madry. Adversarial examples are not bugs, they are features. Advances in neural information processing systems, 32, 2019. 1

  5. [13]

    Learning multiple layers of features from tiny images

    Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images. 2009. 7

  6. [14]

    Adver- sarial examples in the physical world, 2017

    Alexey Kurakin, Ian Goodfellow, and Samy Bengio. Adver- sarial examples in the physical world, 2017. 1

  7. [15]

    Probabilistic mar- gins for instance reweighting in adversarial training.Advances in Neural Information Processing Systems, 34:23258–23269,

    Feng Liu, Bo Han, Tongliang Liu, Chen Gong, Gang Niu, Mingyuan Zhou, Masashi Sugiyama, et al. Probabilistic mar- gins for instance reweighting in adversarial training.Advances in Neural Information Processing Systems, 34:23258–23269,

  8. [16]

    Towards deep learn- ing models resistant to adversarial attacks

    Aleksander Madry, Aleksandar Makelov, Ludwig Schmidt, Dimitris Tsipras, and Adrian Vladu. Towards deep learn- ing models resistant to adversarial attacks. In International Conference on Learning Representations, 2018. 1, 2, 3, 5

  9. [17]

    Virtual adversarial training: a regularization method for supervised and semi-supervised learning

    Takeru Miyato, Shin-ichi Maeda, Masanori Koyama, and Shin Ishii. Virtual adversarial training: a regularization method for supervised and semi-supervised learning. IEEE transactions on pattern analysis and machine intelligence , 41(8):1979– 1993, 2018. 1

  10. [18]

    Reading digits in natural images with unsupervised feature learning

    Yuval Netzer, Tao Wang, Adam Coates, Alessandro Bissacco, Baolin Wu, Andrew Y Ng, et al. Reading digits in natural images with unsupervised feature learning. In NIPS workshop on deep learning and unsupervised feature learning, page 4. Granada, 2011. 7

  11. [19]

    Reducing excessive margin to achieve a better accuracy vs

    Rahul Rade and Seyed-Mohsen Moosavi-Dezfooli. Reducing excessive margin to achieve a better accuracy vs. robustness trade-off. In International Conference on Learning Represen- tations, 2021. 1, 3

  12. [20]

    Fixmatch: Simplifying semi-supervised learning with consistency and confidence

    Kihyuk Sohn, David Berthelot, Nicholas Carlini, Zizhao Zhang, Han Zhang, Colin A Raffel, Ekin Dogus Cubuk, Alexey Kurakin, and Chun-Liang Li. Fixmatch: Simplifying semi-supervised learning with consistency and confidence. Advances in neural information processing systems, 33:5...

  13. [21]

    Fooling automated surveillance cameras: adversarial patches to attack person detection

    Simen Thys, Wiebe Van Ranst, and Toon Goedem´e. Fooling automated surveillance cameras: adversarial patches to attack person detection. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition workshops, pages 0–0, 2019. 1

  14. [22]

    Robustness may be at odds with accuracy

    Dimitris Tsipras, Shibani Santurkar, Logan Engstrom, Alexan- der Turner, and Aleksander Madry. Robustness may be at odds with accuracy. In International Conference on Learning Representations, 2019. 1

  15. [23]

    Improving adversarial robustness requires revisiting misclassified examples

    Yisen Wang, Difan Zou, Jinfeng Yi, James Bailey, Xingjun Ma, and Quanquan Gu. Improving adversarial robustness requires revisiting misclassified examples. In International conference on learning representations, 2019. 1, 3 9

  16. [24]

    Adversarial driving: Attacking end-to- end autonomous driving

    Han Wu, Syed Yunas, Sareh Rowlands, Wenjie Ruan, and Johan Wahlstr ¨om. Adversarial driving: Attacking end-to- end autonomous driving. In 2023 IEEE Intelligent Vehicles Symposium (IV), pages 1–7. IEEE, 2023. 1

  17. [25]

    Improving adversarial robustness by putting more regularizations on less robust samples

    Dongyoon Yang, Insung Kong, and Yongdai Kim. Improving adversarial robustness by putting more regularizations on less robust samples. In International Conference on Machine Learning, pages 39331–39348. PMLR, 2023. 1, 3

  18. [26]

    Enhanc- ing adversarial robustness in low-label regime via adaptively weighted regularization and knowledge distillation

    Dongyoon Yang, Insung Kong, and Yongdai Kim. Enhanc- ing adversarial robustness in low-label regime via adaptively weighted regularization and knowledge distillation. In Pro- ceedings of the IEEE/CVF International Conference on Com- puter Vision, pages 4552–4561, 2023. 1, 3, 5...

  19. [27]

    One size does not fit all: Data- adaptive adversarial training

    Shuo Yang and Chang Xu. One size does not fit all: Data- adaptive adversarial training. In European Conference on Computer Vision, pages 70–85. Springer, 2022. 6, 14

  20. [28]

    Wide residual networks

    Sergey Zagoruyko and Nikos Komodakis. Wide residual networks. In British Machine Vision Conference 2016. British Machine Vision Association, 2016. 7

  21. [29]

    Theoretically principled trade-off between robustness and accuracy

    Hongyang Zhang, Yaodong Yu, Jiantao Jiao, Eric Xing, Lau- rent El Ghaoui, and Michael Jordan. Theoretically principled trade-off between robustness and accuracy. In International conference on machine learning, pages 7472–7482. PMLR,

  22. [30]

    Attacks which do not kill training make adversarial learning stronger

    Jingfeng Zhang, Xilie Xu, Bo Han, Gang Niu, Lizhen Cui, Masashi Sugiyama, and Mohan Kankanhalli. Attacks which do not kill training make adversarial learning stronger. In International conference on machine learning, pages 11278– 11287. PMLR, 2020. 6, 13, 14

  23. [31]

    Geometry-aware instance-reweighted adversarial training

    Jingfeng Zhang, Jianing Zhu, Gang Niu, Bo Han, Masashi Sugiyama, and Mohan Kankanhalli. Geometry-aware instance-reweighted adversarial training. arXiv preprint arXiv:2010.01736, 2020. 1, 3 10 A. Additional Details on Experimental Setup A.1. Teacher Model For all semi-supervise...

  24. [90]

    Curious” refers to global epsilon scheduling CURIOUS -(1.25, 70). “Const

    A batch size of 128 is used during training. For SRST-A WR and SSAT-MBI-A WR:The training setup follows the original paper [26]: The SGD optimizer is used with the initial learning rate of 0.1, momentum of 0.9, and weight decay of 5 × 10−4. For our SSAT-MBI-AWR on CIFAR-10 and...

Pith tools

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