Pith. sign in

REVIEW 3 major objections 5 minor 41 references

Adversarial Robustness of Stabilized NeuralODEs Might be from Obfuscated Gradients

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

Pith's one-line read The paper argues that the apparent adversarial robustness of stabilized neural ODE networks is an artifact of gradient obfuscation in adaptive-stepsize solvers, not genuine robustness.

desk verdict A useful negative result with one overbroad headline: the ablation cleanly shows adaptive-step solvers cause gradient masking, but CW/SPSA are only tested at coarse tolerance, so 'mainly from' overstates the evidence. read the letter →

arxiv 2009.13145 v2 pith:IGWSN7IC submitted 2020-09-28 cs.LG stat.ML

classification cs.LGstat.ML
keywords neuralordinarydifferentialequationsadversarialrobustnessgradientmaskingobfuscatedgradientsskew-symmetricarchitectureLyapunovstabilityadaptivestep-sizeODEsolver
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

Natural image classifiers built from neural ODE blocks can appear to resist gradient-based adversarial attacks without any adversarial training, but this paper argues that the apparent robustness is a mirage. It introduces a stabilized ODE architecture (SONet) with skew-symmetric couplings and a claimed Lyapunov stability guarantee, then shows that with natural training it reaches PGD robust accuracy higher than a TRADES-trained ResNet (e.g., 61–71% at $\ell_\infty=0.031$). The same networks collapse to roughly 0–15% under CW-infinity and SPSA attacks, while TRADES stays at 35–70%. The explanation is that adaptive-stepsize ODE solvers such as DOPRI5 mask the loss gradients during PGD, giving a false sense of security. If true, this means PGD-only evaluations of ODE-based defenses overstate robustness.

What carries the argument

The central object is the stabilized ODE block $\frac{d}{dt}[x;z] = \sigma\big(A_{k+1}[x;z]\big)$ with skew-symmetric $A_{k+1}$ plus damping $\gamma I$; the stability proof works with the Jacobian $J = D(A_{k+1}-\gamma I)$ and a similarity transform to $D^{1/2}(A_{k+1}-\gamma I)D^{1/2}$, where $D$ is the positive diagonal matrix of activation derivatives. The mechanism that produces the robustness numbers is the adaptive-stepsize solver (DOPRI5, Bosh3, adaptive Heun); its error-tolerance-driven step selection perturbs the gradient of the loss and masks it from PGD. Fixed-step solvers remove the masking and the robustness vanishes.

What would settle it

Train the same SOBlock or SONet with a fixed-step solver (Euler or RK4) instead of an adaptive one and run PGD-20; if robust accuracy stays well above zero, the claim that adaptive-stepsize solvers are the source of robustness is refuted. The paper's own experiment finds it drops to 0%.

Watch

Extended reading notes

Core claim

The paper proposes a Stabilized Neural ODE Network (SONet), in which each ODE block uses two weight matrices constrained by skew-symmetry ($W^{(2)} = -W^{(1)\top}$) and a small damping term $\gamma$, so the linearized system matrix is $A_{k+1} = \begin{bmatrix}0 & -W^\top \\ W & 0\end{bmatrix} - \gamma I$. Theorem 3.1 claims these blocks are input-output stable in the Lyapunov sense provided the activation is strictly increasing and the damping is positive. Under natural training, the architecture and a variant replacing only the first ResNet layer (SOBlock) attain PGD-20 $\ell_\infty$ robust accuracy around 62% on CIFAR-10, higher than ResNet10-TRADES's 45% at the same epsilon, while keeping natural accuracy near 91%. The paper then shows this robustness disappears under CW-infinity attacks (0% for SOBlock) and SPSA attacks (around 12–15%), and that replacing the adaptive solver with fixed-step Euler or RK4 collapses PGD robustness to 0%. It concludes that adaptive step-size selection in numerical integration obfuscates the loss gradient, so the PGD robustness numbers are not trustworthy.

Load-bearing premise

The stability proof assumes that a positive diagonal similarity transform preserves the condition that all eigenvalues have negative real parts, which does not hold for general non-normal matrices; if this step is wrong, the Lyapunov guarantee does not follow from the stated argument.

Editorial extensions

If this is right

  • PGD-based robustness claims for ODE networks trained with adaptive solvers should be re-checked with CW or SPSA attacks before being trusted.
  • Natural training of a stable ODE block can outperform TRADES on PGD metrics, but the paper indicates that outperformance is an artifact of solver-induced gradient masking, not real robustness.
  • The Lyapunov stability of the ODE architecture does not by itself confer adversarial robustness under white-box attacks.
  • Replacing just the first layer of a ResNet with a stabilized ODE block can give high PGD numbers, so architectural changes can mask vulnerabilities rather than remove them.
  • Robustness evaluation of ODE-based defenses should include gradient-free attacks; otherwise the defense may be substantially overestimated.

Reading between the lines

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

  • The same gradient-masking effect likely applies to other neural ODE models using adaptive-stepsize solvers, so previously reported PGD robustness for such models may need revisiting.
  • A genuinely robust ODE defense would need to combine a stable architecture with adversarial training using attacks that survive gradient obfuscation, or to explicitly regularize the solver's sensitivity to input perturbations.
  • The claimed Lyapunov stability can likely be proved by a direct Lyapunov-function argument using the fact that the symmetric part of $A_{k+1}-\gamma I$ is $-\gamma I$, avoiding the questionable eigenvalue step.
  • One testable extension is to measure input-loss gradient norms across solver tolerances: if larger tolerances systematically produce noisier or smaller gradients, that would confirm the masking mechanism.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Request a human review

A listed scientist reviews the paper for a fee and the review publishes here regardless of verdict. See the reviewers or get listed.

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

3 major / 5 minor

Summary. The manuscript proposes Stabilized ODE Networks (SONet), whose ODE blocks use skew-symmetric weight pairs and a damping parameter gamma, and claims Lyapunov stability for this architecture. It reports that naturally trained SONet and SOBlock achieve nontrivial PGD robustness on CIFAR-10, in some settings exceeding TRADES-trained ResNets. The central explanatory claim is that this apparent robustness is largely an artifact of gradient masking caused by adaptive-stepsize numerical ODE solvers: all adaptive-step solvers tested yield PGD robustness, fixed-step Euler/RK4 yield 0%, and CW-infinity and SPSA attacks break the adaptive-solver models at the default tolerance. The paper therefore concludes that the adversarial robustness of ODE-based networks mainly comes from obfuscated gradients in adaptive-step integration.

Significance. If established, the central negative result is important: it identifies a solver-induced gradient-masking mechanism in Neural ODEs and cautions against interpreting PGD robustness of adaptive-step ODE networks as genuine robustness. The paper's ablation design is clean: the fixed-step versus adaptive-step comparison controls the architecture and isolates the solver, and the CW/SPSA experiments provide independent falsification tests. The public source-code links are a further strength. However, the current evidence for the 'mainly comes from obfuscated gradients' claim is incomplete at tight solver tolerances, and the stability proof in Section 3 has a genuine gap. The significance is real but the strength of the conclusion currently exceeds the evidence.

major comments (3)
  1. [Section 3, proof of Theorem 3.1, Eq. (5)] The proof of Theorem 3.1 contains an invalid eigenvalue inference. From Re lambda_i(A_{k+1} - gamma I) < 0 and D_{k+1} positive diagonal, the manuscript concludes Re lambda_i(D^{1/2}(A_{k+1} - gamma I)D^{1/2}) < 0. This does not follow for non-normal matrices; eigenvalues are not preserved under diagonal congruence. In this particular construction the claim can be rescued by observing that D^{1/2} A D^{1/2} is skew-symmetric and -gamma D is negative definite, so the field of values lies in the open left half-plane, but the written derivation omits that argument. In addition, the subsequent conclusion ||(x(t),z(t))|| <= ||(x(0),z(0))|| for the nonlinear system does not follow from the eigenvalue condition on the linearization alone; a Lyapunov-function or contraction argument is needed. Since Theorem 3.1 is a stated main contribution, the proof must be rewritten.
  2. [Section 5.1 versus Section 3] All reported experiments set gamma = 0 (Section 5.1: 'we set the constant gamma in (3) to be 0'), while Theorem 3.1 assumes a positive damping factor ('positive damping factor gamma is small'). The evaluated architecture is therefore not the provably stable system analyzed in the theorem. Please either provide experiments with gamma > 0 for the stability claims or explicitly separate the stability theorem from the experimental configuration.
  3. [Section 6.2, Tables 2-4] The CW-infinity and SPSA results are reported only for DOPRI5 with tol = 0.1. Table 2 shows that SOBlock at tol = 0.001 still retains 63.87% PGD20 and 46.20% PGD1000 robust accuracy, and Table 3 shows that the adaptive-step-size oscillations are about an order of magnitude smaller at tol = 0.001. Without CW-infinity and SPSA results at tighter tolerances, the abstract's claim that robustness 'mainly comes from' obfuscated gradients is an overgeneralization. Please add CW-infinity and SPSA attacks at tol = 0.01 and 0.001 for both SOBlock and ODENet, and report whether robust accuracy collapses at all tolerances.
minor comments (5)
  1. [Abstract and Section 7] The title and some passages say 'might be' from obfuscated gradients, while the Abstract and Section 7 say the robustness 'mainly comes from' or 'is mainly due to' obfuscated gradients; the wording should be aligned with the evidence actually presented.
  2. [Tables 1, 2, and 4] No standard deviations or number of training seeds are reported; please add error bars over seeds and attack restarts, or explicitly state that single runs are reported.
  3. [Table 2] The fixed-step solvers are only tested at h = 1; a step-size sweep for Euler and RK4 would make the claim that robustness is associated only with adaptive step sizes stronger.
  4. [Section 6.1.2] The discussion of over-enlarging error tolerance is qualitative; specify the tolerance at which natural accuracy and robust accuracy begin to degrade for each solver.
  5. [Abstract and Section 5.1] There are typos and incomplete phrases, including 'natrual' in Section 5.1 and 'the possible mechanism underlying such .' in the Abstract; a careful proofread is needed.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the gradient-masking claim is tested against external attacks and solver ablations, not fitted or assumed.

full rationale

The paper's central claim is that adaptive-stepsize ODE solvers create obfuscated gradients and that this explains the apparent PGD robustness of ODE-based networks. This claim is not derived from its own inputs: it is supported by ablation experiments across solvers (Euler, RK4, adaptive Heun, Bosh3, DOPRI5) and by evaluation under CW-infinity and SPSA attacks, which are independent of the PGD gradients that the paper argues are masked. The stability theorem for SONet is an architectural motivation, but the robustness attribution does not assume the theorem's conclusion; the later experiments would apply even if the theorem were weaker. The only self-citation is TRADES, used as a comparison baseline and as an external, code-available benchmark; it is not used to justify the gradient-masking explanation. A mathematical gap in the proof of Theorem 3.1, where the eigenvalue comparison in Eqn. (5) is not justified for non-normal matrices, is a correctness concern rather than a circularity, because no conclusion is imported from that step into the later empirical claim. No fitted parameter is renamed as a prediction, and no known result is repackaged as new. Accordingly, no circular step meeting the quoted-evidence standard was found.

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

The central claim is empirical, so the ledger is light. The stability theorem depends on standard linear systems theory and the monotone-activation assumption; the gradient-masking explanation depends on the solver ablation and the validity of CW/SPSA attacks as external benchmarks.

free parameters (2)
  • gamma (damping factor) = 0
    Hyperparameter in the ODE block (Eqn. 3); theorem requires positive small gamma, but experiments set gamma=0. It is a design choice, not fitted to the target claim.
  • DOPRI5 error tolerance tol = 0.1
    Default tolerance in all headline experiments; Section 6 shows changing tol changes PGD robust accuracy, indicating the robustness measure is sensitive to this solver knob.
assumptions (4)
  • domain assumption Activation function is strictly monotonically increasing (sigma' > 0).
    Used in Theorem 3.1; LeakyReLU used in experiments has positive subgradient almost everywhere, so it approximately satisfies this, but the mismatch between theorem assumption and practical activation is not discussed.
  • standard math The ODE block with W^{(2)} = -W^{(1)T} and gamma >= 0 is stable if the symmetric part of the Jacobian is negative definite.
    This is the intended content of Theorem 3.1; the proof relies on it via similar matrix arguments.
  • domain assumption The adaptive-step solver's internal step-size selection is differentiable enough for backpropagation to compute a loss gradient that PGD senses.
    The paper treats the solver as a differentiable component; the claim is that these gradients are misleading, but the premise that backprop through the solver is the gradient PGD uses is implicit.
  • domain assumption Ablation across solvers isolates the adaptive-step mechanism from solver order or accuracy.
    The conclusion that 'adaptive step size' (not solver order or function approximation) causes masking is inferred from the pattern in Table 2; no direct measure of gradient alignment is provided.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Adversarial Robustness of Stabilized NeuralODEs Might be from Obfuscated Gradients." pith.science (2026). https://pith.science/paper/IGWSN7IC

@misc{pith2026200913145,
  author       = {Pith},
  title        = {Pith review of: Adversarial Robustness of Stabilized NeuralODEs Might be from Obfuscated Gradients},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/IGWSN7IC}},
  note         = {Machine review of arXiv:2009.13145}
}
abstract

In this paper we introduce a provably stable architecture for Neural Ordinary Differential Equations (ODEs) which achieves non-trivial adversarial robustness under white-box adversarial attacks even when the network is trained naturally. For most existing defense methods withstanding strong white-box attacks, to improve robustness of neural networks, they need to be trained adversarially, hence have to strike a trade-off between natural accuracy and adversarial robustness. Inspired by dynamical system theory, we design a stabilized neural ODE network named SONet whose ODE blocks are skew-symmetric and proved to be input-output stable. With natural training, SONet can achieve comparable robustness with the state-of-the-art adversarial defense methods, without sacrificing natural accuracy. Even replacing only the first layer of a ResNet by such a ODE block can exhibit further improvement in robustness, e.g., under PGD-20 ($\ell_\infty=0.031$) attack on CIFAR-10 dataset, it achieves 91.57\% and natural accuracy and 62.35\% robust accuracy, while a counterpart architecture of ResNet trained with TRADES achieves natural and robust accuracy 76.29\% and 45.24\%, respectively. To understand possible reasons behind this surprisingly good result, we further explore the possible mechanism underlying such an adversarial robustness. We show that the adaptive stepsize numerical ODE solver, DOPRI5, has a gradient masking effect that fails the PGD attacks which are sensitive to gradient information of training loss; on the other hand, it cannot fool the CW attack of robust gradients and the SPSA attack that is gradient-free. This provides a new explanation that the adversarial robustness of ODE-based networks mainly comes from the obfuscated gradients in numerical ODE solvers.

Figures

Figures reproduced from arXiv: 2009.13145 by the authors.

Figure 1
Figure 1. Network architecture. We will use bold capital letters such as W to represent matrices, bold lower-case letters such as x to represent vectors, and lower￾case letters such as t to represent scalars. Specifically, we denote by 0 the all-zero vector, by 1 the all-one vector, by x ∈ R din the input vector to each architecture block, and by z ∈ R dout the output vector, where din does not necessarily equal to dout. Deno… view at source ↗
Figure 2
Figure 2. Stabilized neural ODE Network (SONet) architecture example. Both [PITH_FULL_IMAGE:figures/full_fig_p006_2.png] view at source ↗

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

41 extracted references · 39 canonical work pages

  1. [1]

    Feedback systems: an introduction for scientists and engineers

    Karl Johan Astr \"o m and Richard M Murray. Feedback systems: an introduction for scientists and engineers . Princeton university press, 2010

  2. [2]

    Neural ODEs as the Deep Limit of ResNets with constant weights

    Benny Avelin and Kaj Nystr \"o m. Neural ODEs as the deep limit of ResNets with constant weights. arXiv preprint arXiv:1906.12183 , 2019

  3. [3]

    Are labels required for improving adversarial robustness? In Advances in Neural Information Processing Systems , pages 12192--12202, 2019

    Jean-Baptiste Alayrac, Jonathan Uesato, Po-Sen Huang, Alhussein Fawzi, Robert Stanforth, and Pushmeet Kohli. Are labels required for improving adversarial robustness? In Advances in Neural Information Processing Systems , pages 12192--12202, 2019

  4. [4]

    Adversarial vision challenge

    Wieland Brendel, Jonas Rauber, Alexey Kurakin, Nicolas Papernot, Behar Veliqi, Sharada P Mohanty, Florian Laurent, Marcel Salath \'e , Matthias Bethge, Yaodong Yu, et al. Adversarial vision challenge. In The NeurIPS'18 Competition , pages 129--153. Springer, 2020

  5. [5]

    Provable robustness of relu networks via maximization of linear regions

    Francesco Croce, Maksym Andriushchenko, and Matthias Hein. Provable robustness of relu networks via maximization of linear regions. In International Conference on Artificial Intelligence and Statistics , 2018

  6. [6]

    On Evaluating Adversarial Robustness

    Nicholas Carlini, Anish Athalye, Nicolas Papernot, Wieland Brendel, Jonas Rauber, Dimitris Tsipras, Ian Goodfellow, Aleksander Madry, and Alexey Kurakin. On evaluating adversarial robustness. arXiv preprint arXiv:1902.06705 , 2019

  7. [7]

    Parseval networks: Improving robustness to adversarial examples

    Moustapha Cisse, Piotr Bojanowski, Edouard Grave, Yann Dauphin, and Nicolas Usunier. Parseval networks: Improving robustness to adversarial examples. In International Conference on Machine Learning , 2017

  8. [8]

    Frank Callier and A

    M. Frank Callier and A. Charles Desoer. Linear System Theory . Springer-Verlag, 1991

Show all 41 references
  1. [9]

    Neural ordinary differential equations

    Tian Qi Chen, Yulia Rubanova, Jesse Bettencourt, and David K Duvenaud. Neural ordinary differential equations. In Advances in Neural Information Processing Systems , pages 6571--6583, 2018

  2. [10]

    Certified adversarial robustness via randomized smoothing

    Jeremy M Cohen, Elan Rosenfeld, and J Zico Kolter. Certified adversarial robustness via randomized smoothing. In International Conference on Machine Learning , 2019

  3. [11]

    Unlabeled data improves adversarial robustness

    Yair Carmon, Aditi Raghunathan, Ludwig Schmidt, John C Duchi, and Percy S Liang. Unlabeled data improves adversarial robustness. In Advances in Neural Information Processing Systems , pages 11190--11201, 2019

  4. [12]

    Towards evaluating the robustness of neural networks

    Nicholas Carlini and David Wagner. Towards evaluating the robustness of neural networks. In IEEE Symposium on Security and Privacy , pages 39--57, 2017

  5. [13]

    J. R. Dormand and P. J. Prince. A family of embedded runge-kutta formulae. Journal of Computational and Applied Mathematics , 6(1):19–--26, 1980

  6. [14]

    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 IEEE Conference on Computer Vision and Pattern Recognition , pages 1625--1...

  7. [15]

    Stable architectures for deep neural networks

    Eldad Haber and Lars Ruthotto. Stable architectures for deep neural networks. Inverse Problems , 34(1):014004, 2017

  8. [16]

    Deep residual learning for image recognition

    Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In IEEE conference on computer vision and pattern recognition , pages 770--778, 2016

  9. [17]

    Batch normalization: Accelerating deep network training by reducing internal covariate shift

    Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. In International Conference on Machine Learning , pages 448--456, 2015

  10. [18]

    Adversarial examples for evaluating reading comprehension systems

    Robin Jia and Percy Liang. Adversarial examples for evaluating reading comprehension systems. In Empirical Methods in Natural Language Processing , 2017

  11. [19]

    Provable defenses against adversarial examples via the convex outer adversarial polytope

    J Zico Kolter and Eric Wong. Provable defenses against adversarial examples via the convex outer adversarial polytope. In International Conference on Machine Learning , 2018

  12. [20]

    On norm-agnostic robustness of adversarial training

    Bai Li, Changyou Chen, Wenlin Wang, and Lawrence Carin. On norm-agnostic robustness of adversarial training. arXiv preprint arXiv:1905.06455 , 2019

  13. [21]

    Implicit euler skip connections: Enhancing adversarial robustness via numerical stability

    Mingjie Li, Lingshen He, and Zhouchen Lin. Implicit euler skip connections: Enhancing adversarial robustness via numerical stability. In International Conference on Machine Learning , 2020

  14. [22]

    MagNet : a two-pronged defense against adversarial examples

    Dongyu Meng and Hao Chen. MagNet : a two-pronged defense against adversarial examples. In ACM SIGSAC Conference on Computer and Communications Security , pages 135--147, 2017

  15. [23]

    Towards deep learning models resistant to adversarial attacks

    Aleksander Madry, Aleksandar Makelov, Ludwig Schmidt, Dimitris Tsipras, and Adrian Vladu. Towards deep learning models resistant to adversarial attacks. In International Conference on Learning Representations , 2018

  16. [24]

    Haifeng Qian and Mark N. Wegman. l_2 -nonexpansive neural networks. In International Conference on Learning Representations , 2019

  17. [25]

    Accessorize to a crime: Real and stealthy attacks on state-of-the-art face recognition

    Mahmood Sharif, Sruti Bhagavatula, Lujo Bauer, and Michael K Reiter. Accessorize to a crime: Real and stealthy attacks on state-of-the-art face recognition. In ACM SIGSAC Conference on Computer and Communications Security , pages 1528--1540, 2016

  18. [26]

    Pixeldefend: Leveraging generative models to understand and defend against adversarial examples

    Yang Song, Taesup Kim, Sebastian Nowozin, Stefano Ermon, and Nate Kushman. Pixeldefend: Leveraging generative models to understand and defend against adversarial examples. In International Conference on Learning Representations , 2018

  19. [27]

    Peernets: Exploiting peer wisdom against adversarial attacks

    Jan Svoboda, Jonathan Masci, Federico Monti, Michael Bronstein, and Leonidas Guibas. Peernets: Exploiting peer wisdom against adversarial attacks. In International Conference on Learning Representations , 2019

  20. [28]

    Adversarially robust generalization requires more data

    Ludwig Schmidt, Shibani Santurkar, Dimitris Tsipras, Kunal Talwar, and Aleksander M a dry. Adversarially robust generalization requires more data. In Advances in Neural Information Processing Systems 31 , pages 5019--5031, 2018

  21. [29]

    Robustness may be at odds with accuracy

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

  22. [30]

    Deep limits of residual neural networks

    Matthew Thorpe and Yves van Gennip. Deep limits of residual neural networks. arXiv preprint arXiv:1810.11741 , 2018

  23. [31]

    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 IEEE Conference on Computer Vision and Pattern Recognition Workshops , 2019

  24. [32]

    Adversarial risk and the dangers of evaluating against weak attacks

    Jonathan Uesato, Brendan O'Donoghue, Aaron van den Oord, and Pushmeet Kohli. Adversarial risk and the dangers of evaluating against weak attacks. arXiv preprint arXiv:1802.05666 , 2018

  25. [33]

    Bao Wang, Binjie Yuan, Zuoqiang Shi, and Stanley J. Osher. Resnets ensemble via the feynman-kac formalism to improve natural and robust accuracies. In Advances in Neural Information Processing Systems 32 (NIPS 2019) , 2019

  26. [34]

    Feature denoising for improving adversarial robustness

    Cihang Xie, Yuxin Wu, Laurens van der Maaten, Alan L Yuille, and Kaiming He. Feature denoising for improving adversarial robustness. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition , pages 501--509, 2019

  27. [35]

    Adversarial examples for semantic segmentation and object detection

    Cihang Xie, Jianyu Wang, Zhishuai Zhang, Yuyin Zhou, Lingxi Xie, and Alan Yuille. Adversarial examples for semantic segmentation and object detection. In International Conference on Computer Vision , 2017

  28. [36]

    On robustness of neural ordinary differential equations

    Hanshu Yan, Jiawei Du, Vincent YF Tan, and Jiashi Feng. On robustness of neural ordinary differential equations. arXiv preprint arXiv:1910.05513 , 2019

  29. [37]

    Adversarially robust generalization just requires more unlabeled data

    Runtian Zhai, Tianle Cai, Di He, Chen Dan, Kun He, John Hopcroft, and Liwei Wang. Adversarially robust generalization just requires more unlabeled data. arXiv preprint arXiv:1906.00555 , 2019

  30. [38]

    Improving the robustness of deep neural networks via stability training

    Stephan Zheng, Yang Song, Thomas Leung, and Ian Goodfellow. Improving the robustness of deep neural networks via stability training. In IEEE Conference on Computer Vision and Pattern Recognition , pages 4480--4488, 2016

  31. [39]

    Deep neural networks with multi-branch architectures are intrinsically less non-convex

    Hongyang Zhang, Junru Shao, and Ruslan Salakhutdinov. Deep neural networks with multi-branch architectures are intrinsically less non-convex. In International Conference on Artificial Intelligence and Statistics , pages 1099--1109, 2019

  32. [40]

    Theoretically principled trade-off between robustness and accuracy

    Hongyang Zhang, Yaodong Yu, Jiantao Jiao, Eric P Xing, Laurent El Ghaoui, and Michael I Jordan. Theoretically principled trade-off between robustness and accuracy. In International Conference on Machine Learning , 2019

  33. [41]

    You only propagate once: Painless adversarial training using maximal principle

    Dinghuai Zhang, Tianyuan Zhang, Yiping Lu, Zhanxing Zhu, and Bin Dong. You only propagate once: Painless adversarial training using maximal principle. In Advances in Neural Information Processing Systems 32 (NeurIPS) , 2019

Pith tools

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