- The paper introduces AlignPrune, leveraging a dynamic alignment score to differentiate clean from noisy samples during training.
- It employs temporal analysis of loss trajectories to robustly prune data without altering the underlying model or training schedule.
- It demonstrates significant accuracy improvements across benchmarks while maintaining efficiency and integration with existing methods.
Robust Dynamic Data Pruning under Label Noise via Loss Trajectory Alignment
Introduction and Motivation
Dynamic data pruning has emerged as a key paradigm for enhancing the efficiency of deep learning model training by adaptively excluding samples with low utility. However, the presence of noisy labels—a ubiquitous property of web-scale and weakly-supervised datasets—undermines traditional dynamic pruning algorithms. These methods, often reliant on per-sample loss values for sample selection, misidentify noisy instances as "important" due to their consistently large losses, thus retaining them and degrading downstream performance.
This work addresses the challenge by introducing AlignPrune, a plug-and-play module that replaces loss-based sample rankings with a robust, trajectory-level alignment metric—the Dynamic Alignment Score (DAS). DAS leverages the temporal consistency of loss decay for clean samples, contrasting it against erratic dynamics from noisy samples. AlignPrune is demonstrated as architecture- and training-agnostic, integrating seamlessly into state-of-the-art pruning algorithms while achieving significant robustness gains under diverse noise settings.
Figure 1: (a) Motivation: Dynamic pruning shows greater robustness to label noise than static pruning. (b) Issue: Loss-based pruning retains noisy, high-loss samples. (c) Key insight: Clean vs. noisy samples exhibit different loss trajectory behaviors.
Methodology
The core methodological innovation of AlignPrune is DAS, which quantifies the alignment between a sample's loss trajectory and a reference clean trajectory via temporal correlation—defaulting to the Pearson coefficient for computational efficiency and invariance to scale. Clean samples tend to display monotonically decreasing loss over time, whereas noisy samples are typified by non-monotonic, oscillatory loss curves.
Algorithmic details:
Notably, AlignPrune does not alter the underlying gradient computation, model, or training schedule. This level of modularity ensures seamless integration with methods such as InfoBatch [qin2024infobatch] and SeTa [zhou2025scale], yielding unbiased training dynamics while enhancing noise robustness.
Experimental Results
Extensive evaluations are conducted across five benchmarks (CIFAR-100N, CIFAR-10N, WebVision, Clothing-1M, and ImageNet-1K) and multiple types and levels of label noise. Key numerical results include:
Additionally, experiments demonstrate that AlignPrune preserves performance for clean-label scenarios, indicating that the method does not over-prune hard legitimate samples. Ablation studies confirm that performance is stable across a wide range of hyperparameters, including the DAS trajectory window and pruning ratios.


Figure 4: Ablation on pruning probability r shows performance under varying degrees of aggressiveness in sample exclusion.
Figure 5: Even with only 0.1% of the reference set used as clean anchor, AlignPrune maintains effectiveness.
Practical and Theoretical Implications
The AlignPrune module introduces a robust temporal perspective to data pruning, moving the field past snapshot-based heuristics that struggle under distribution shift or noise. Conceptually, this approach provides a general template for trajectory-level sample selection, leveraging the statistical regularity of clean sample learning dynamics.
Practically, AlignPrune is especially consequential for large-scale, weakly-labeled scenarios, such as those underpinning modern vision and language foundation models. Since no architectural or loop modifications are required, alignments can be deployed with minimal engineering cost for both new and legacy systems. The method’s low sensitivity to reference set size and composition further reduces the cost of securing strong clean sets, enabling the use of pseudo-clean automatically curated anchors.
Theoretically, aligning loss trajectories with robust reference signals aligns with assumptions of consistency in memorization dynamics, potentially informing future advances in curriculum learning, noise-robust optimization, or adaptive coreset design.
Future Directions
- Extended meta-learning: Trajectory-level information could inform sophisticated meta-learners or controllers that adaptively re-weight or re-sample data to further improve generalization under labeling or distributional uncertainty.
- Multimodal and self-supervised extensions: Similar alignment techniques may be adapted for sequential or multimodal representations, self-supervised signals, or other proxy statistics.
- Resource-efficient annotation: Model-driven selection of small clean anchors, possibly via active learning, could couple with trajectory alignment for ultra-low-resource robust training.
Conclusion
The AlignPrune module, based on loss trajectory alignment, provides a robust and generalizable solution for dynamic data pruning under noisy labels. Experiments demonstrate significant improvements in accuracy and efficiency over state-of-the-art baselines across a range of pruning ratios, architectures, and noise settings. The modularity, noise robustness, and low reliance on explicit clean labels render AlignPrune especially attractive for scaling robust deep learning in real-world, large-scale applications (2604.07306).