Papers for

data platform architects

Papers whose findings have a practical use for this group, as judged from the abstract. Open a paper to read what it means in practice.

Patterns explain when frozen models adapt well to time changes

The Anatomy and Boundary of Adaptation under Temporal Tabular Shift

Abstract: Prequential adaptation of frozen tabular foundation models under temporal drift, with each label revealed only after prediction, helps some deployments and harms others, yet current practice does not predict which. We study the sources and limits of these gains. A diagnostic anatomy attributes gains to four recurring mechanisms under a streaming protocol that removes three optimistic biases and quantifies a fourth. Within an agnostic total-variation drift class, the target conditional is only partially identified: its identified-set diameter, the \emph{wall}, is irreducible from unlabeled data uniformly in sample size. A second, orthogonal $L^2$ projection wall quantifies what the frozen representation cannot express. Two canonical mechanism priors collapse the first wall. Under stated nuisance-rate conditions, the wall can be estimated from labeled historical windows at a $\sqrt N$ rate above the margin threshold $γ^\star=d_0/(2α_s)$. At $γ=0$, the conditional lower-bound program depends on an open affinity estimate; the positive-margin lower branch also remains open. Semi-synthetic data illustrate the finite-sample mechanism with calibrated exponents. Stream-level proxies on eight industrial streams fall on the difficult side under a stated roughness bound, while the equality case $γ=γ^\star$ remains unresolved.

Thu 10 SeptArtificial Intelligence
The gist
Models trained on tabular data can lose accuracy as data changes over time, and sometimes updating them helps but sometimes it hurts. The authors analyze why adaptation helps or harms by breaking down the problem into four key factors under a setup where each new label appears only after a prediction. They find limits on what can be learned from data without labels and identify conditions where adaptation is feasible. Their study uses theory and simulated data to understand when frozen models can adjust successfully to changing data streams.
Open 2609.12136v1

Randomized learning drastically cuts queries for threshold classification

An Exponential Deterministic--Randomized Gap in ERM-Oracle Complexity for Thresholds on an Unknown Order

Abstract: Attias, Hanneke and Ramaswami (NeurIPS 2025) asked whether randomization provably reduces the oracle calls needed for online learning when the class is accessible only through an oracle. We study the instance they singled out: transductive online learning of thresholds on an unknown total order of T instances, with a consistency-type ERM oracle that returns a full concept consistent with a queried labeled set (or reports non-realizability). Our main result is a separation for a fixed natural oracle. When the oracle is the minimal-prefix rule (or the maximal-prefix rule), every deterministic learner makes M mistakes and Q calls with $M+Q\ge T-\varepsilon$ on some instance ($\varepsilon\in\{0,1\}$, according to whether the empty prefix is a concept), and the constant is exact; hence $O(\log T)$ mistakes cost $T-\varepsilon-O(\log T)$ calls, whereas that paper's randomized learner achieves $O(\log T)$ expected calls and mistakes under the same rule. The randomized order is optimal: on an explicit hard distribution under the minimal-prefix rule, every learner has expected mistakes at least $((T+1-\varepsilon)\,128^{-\mathbb{E}[Q]}-1)/2$, so $Ω(\log T)$ expected calls are necessary for polylogarithmic mistakes. The separation is governed by the oracle's selection rule, not by the class alone: for a legal feasible-median ERM rule a deterministic learner achieves $O(\log T)$ calls and mistakes, while a global-median rule again forces linear total cost. The same linear bound holds when the oracle's answers are chosen adversarially and then frozen into a memoryless oracle. We add partial tradeoff results for fixed query budgets (the middle regime is open) and an interface contrast: with only a weak consistency oracle, returning a realizability bit, both deterministic and randomized learners need $Θ(T)$ calls.

Wed 9 SeptMachine Learning
The gist
This paper studies whether guessing randomly can reduce the number of questions an online learner must ask to identify patterns in ordered data. The authors show that if the learner is not allowed to use randomness, it will have to ask almost as many questions as there are data points, even when trying to make very few mistakes. However, if randomness is used intelligently, the learner can make very few mistakes while only asking a small number of questions. This difference depends on exactly how the learning oracle chooses consistent answers, highlighting that the learning process's details impact the value of randomness.
Open 2609.10196v1

Training multiclass models follows predictable stepwise learning patterns

SGD in Multiclass Logistic Regression: Sequential Learning and Scaling Laws

Abstract: We study the training dynamics of multiclass logistic regression on high-dimensional Gaussian mixture models with a large number of classes and establish precise scaling laws governing the cross-entropy risk under gradient-based optimization. We show that learning proceeds sequentially across classes, from most to least frequent. When the class priors follow a power law distribution, the risk dynamics decompose into three phases: an initial plateau until the first class is learned, a power-law decay regime during which sequential learning occurs, and a final convergence regime. We then analyze how model capacity interacts with optimization under a fixed compute budget. When the effective dimension is restricted via projection onto leading principal components, the risk decomposes into a capacity term (a power law in the retained dimension) and an optimization term (a power law in training time). Optimizing this tradeoff yields a compute-optimal scaling law for logistic regression, with explicit prescriptions for model size and training time as functions of compute. These results extend theoretical scaling laws from linear regression to multiclass classification, while connecting to empirical scaling laws observed in large-scale neural networks.

Mon 7 SeptMachine Learning
The gist
Training models to recognize many different groups, like animals in photos, happens in steps where the model learns the most common groups first, then the rarer ones later. The authors studied how the training risk (or error) changes over time, finding it follows distinct phases and power laws especially when class frequencies drop off like a power law. They also figured out the best way to use limited computing resources by balancing model size and training time to reduce errors efficiently. These insights help explain how simple models behave when learning multiple categories, linking older linear models to modern neural network behavior.
Open 2609.07868v1