Adversarial Perturbation Vulnerability
Model Misclassifies Images Modified by Small Adversarial Perturbations (Imperceptible to Human)
6 patterns for this goal
Vision models lose accuracy when input images deviate from the conditions they were trained on — whether that deviation is a deliberately crafted adversarial perturbation, ordinary JPEG compression, unfamiliar lighting, low resolution, an out-of-distribution object, or an unfamiliar rotation. The common mechanism across all six patterns is that convolutional and transformer vision architectures have no built-in invariance to compression, lighting shift, resolution loss, rotation, adversarial perturbation, or distributional novelty; robustness has to be trained in explicitly (via augmentation, adversarial training, or auxiliary detectors) or the model degrades — sometimes gracefully, sometimes as a sharp accuracy cliff, and in the adversarial and OOD cases, with unchanged or even increased confidence.
Across all six patterns, the fix is never “use a better pretrained model” alone — it is architectural. Every mitigation section converges on the same two-stage recipe: (1) train-time augmentation that explicitly exposes the model to the nuisance range it will see in production (adversarial examples at a fixed perturbation budget, JPEG at multiple quality factors, illumination across a color-temperature range, rotations across the full circle, synthetic OOD samples), and (2) a runtime layer — confidence thresholds keyed to detected input quality, ensemble voting, or a dedicated anomaly/OOD detector — that treats a prediction outside the validated envelope as suspect rather than authoritative. Patterns that skip stage two (trusting a single softmax confidence score) are exactly the ones where confidence stays high while accuracy collapses.
No. Only adversarial-perturbation involves an adversary; the other five patterns in adversarial robustness — compression, low resolution, lighting shift, rotation/perspective, and OOD blindness — are ordinary consequences of deploying a vision model outside the exact conditions of its training data.
Because the failure mode isn’t “wrong answer with appropriately low confidence” — baseline models assign >50% confidence to 80-90% of OOD examples. The model isn’t uncertain about an unfamiliar input; it’s confidently wrong, which is what makes ood-blindness dangerous in ways a calibrated low-confidence error would not be.
Yes. A compressed, poorly lit, rotated photo of a genuinely novel object combines four of adversarial robustness’s six patterns at once, and the mitigations are not mutually exclusive — augmentation for compression, lighting, and rotation can be applied in the same training pipeline, while OOD and adversarial detectors can run as parallel runtime checks on the same inference call.
Ensemble-based detection. adversarial-perturbation, ood-blindness, and rotation-perspective-variance all converge independently on running multiple models or multiple transformed views of the same input and requiring agreement before accepting a prediction — the same pattern applied to three different root causes.
| Pattern | Mechanism |
|---|---|
| Adversarial Perturbation | Imperceptible crafted noise flips predictions via brittle, high-dimensional decision boundaries |
| Compression Sensitivity | JPEG/WebP artifacts differ statistically from uncompressed training images, eroding fine detail |
| Lighting & Color Shift | Illumination is learned as a feature rather than treated as a nuisance variable, so models overfit to training-set lighting |
| Low-Resolution Failure | Downsampling destroys detail the model’s receptive fields depend on, causing cliffs below training resolution |
| Out-of-Distribution Blindness | Softmax always outputs a class distribution; there is no built-in mechanism to reject unknown inputs |
| Rotation & Perspective Variance | CNNs lack rotational invariance (only approximate equivariance), so canonical-view training fails to generalize to rotated or skewed views |
Total: 6 patterns
Model Misclassifies Images Modified by Small Adversarial Perturbations (Imperceptible to Human)
Model Fails When Images Compressed (JPEG Artifacts); Accuracy Sensitive to Compression Quality
Model Highly Sensitive to Lighting Conditions and Color Changes; Fails Under Different Illumination
Model Performance Collapses on Low-Resolution Images; Cannot Recognize Objects When Downsampled
Model Cannot Detect When Input Is Out-of-Distribution; Makes Confident Predictions on Unknown Objects/Scenes
Model Fails When Images Are Rotated or Viewed from Different Perspectives; Not Rotationally Invariant