LGFeb 3, 2022

Characterizing & Finding Good Data Orderings for Fast Convergence of Sequential Gradient Methods

arXiv:2202.01838v115 citations
Originality Incremental advance
AI Analysis

This work addresses the optimization efficiency problem for machine learning practitioners by improving training convergence, though it is incremental as it builds on existing methods like Random Reshuffling.

The paper tackles the problem of data ordering's impact on convergence speed for sequential gradient methods, showing that a greedy algorithm for selecting good orders during training achieves over 14% higher accuracy than Random Reshuffling.

While SGD, which samples from the data with replacement is widely studied in theory, a variant called Random Reshuffling (RR) is more common in practice. RR iterates through random permutations of the dataset and has been shown to converge faster than SGD. When the order is chosen deterministically, a variant called incremental gradient descent (IG), the existing convergence bounds show improvement over SGD but are worse than RR. However, these bounds do not differentiate between a good and a bad ordering and hold for the worst choice of order. Meanwhile, in some cases, choosing the right order when using IG can lead to convergence faster than RR. In this work, we quantify the effect of order on convergence speed, obtaining convergence bounds based on the chosen sequence of permutations while also recovering previous results for RR. In addition, we show benefits of using structured shuffling when various levels of abstractions (e.g. tasks, classes, augmentations, etc.) exists in the dataset in theory and in practice. Finally, relying on our measure, we develop a greedy algorithm for choosing good orders during training, achieving superior performance (by more than 14 percent in accuracy) over RR.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes