K-ABENA: K-Adaptive Backpropagation with Error-based N-exclusion Algorithm : (Compensated Loss-Based Sample Exclusion with Unbiased Gradient Estimation)

· Source: Artificial Intelligence · Field: Technology & Digital — Artificial Intelligence & Machine Learning · Depth: Expert, quick

Summary

K-ABENA, the K-Adaptive Backpropagation with Error-based N-exclusion Algorithm, is a selective gradient computation framework designed to reduce per-iteration training costs by excluding a fraction of low-loss observations from the backward pass. Its canonical form (v3) employs a defensive-mixture sampling design combined with Horvitz-Thompson inverse-probability reweighting, resulting in a design-unbiased Horvitz-Thompson gradient estimator. This estimator provides an O(1/sqrt(T)) non-convex convergence guarantee for SGD. The paper demonstrates that uncompensated loss-based selection methods, including earlier K-ABENA variants, fail to reach stationary points when selection bias is present, achieving test AUCs of 0.53-0.62 at 0.17% class imbalance compared to 0.9998 for full-batch SGD. In contrast, the compensated K-ABENA estimator achieves 0.9991 AUC with 28.4% compute savings and is statistically indistinguishable from full-batch SGD on datasets like Breast Cancer, Digits, Wine, and Diabetes, while saving 28-54% of per-epoch gradient computation. A biased "regularized mode" is also discussed, showing significant performance degradation under label noise and extreme imbalance.

Key takeaway

For Machine Learning Engineers optimizing deep learning training efficiency, K-ABENA provides a proven method to reduce per-epoch gradient computation by 28-54% while maintaining full-batch SGD performance and unbiased gradient estimation. You should consider integrating K-ABENA's compensated estimator into your workflows, particularly when dealing with large datasets or class imbalance, to achieve substantial compute savings. However, avoid its "regularized mode" or other uncompensated loss-based selection methods, as they exhibit significant performance degradation under label noise or extreme imbalance.

Key insights

K-ABENA selectively excludes low-loss samples from backpropagation, achieving significant compute savings with unbiased gradient estimation and strong convergence.

Principles

Method

K-ABENA v3 uses defensive-mixture sampling on low-loss observations and Horvitz-Thompson inverse-probability reweighting to compute design-unbiased gradients, reducing backward pass cost.

In practice

Topics

Best for: Research Scientist, AI Engineer, AI Scientist, Machine Learning Engineer

Related on AIssential

Open in AIssential →

Editorial summary, takeaway, and curation by AIssential. Original article published by Artificial Intelligence.