Pith. sign in

REVIEW 4 major objections 4 minor 18 references

When to retrain a machine learning model

T0 review · 4 major / 4 minor · reviewed 2026-08-07 · deepseek-v4-flash

Pith's one-line read The paper claims that forecasting future accuracy — for models not yet trained — is what makes retraining schedules cheaper than detecting drift.

desk verdict A genuinely new retraining rule that wins on 6/7 datasets, but the abstract overstates, the iWild significance test is impossible, and Proposition 3.1 is false. read the letter →

arxiv 2505.14903 v1 pith:ISNXR2GC submitted 2025-05-20 cs.LG

classification cs.LG
keywords modelretrainingdistributionshiftperformanceforecastinguncertaintyquantificationcost-awaredecisionmakingconceptdriftsequential
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper tackles the practical question of when a deployed machine learning model should be retrained as the data it sees drifts. It claims that the right signal is not detecting a shift in the data, but forecasting what the accuracy of both the current model and models that have not yet been trained would be, and then comparing the total cost — retraining cost plus error cost — of each choice. The proposed procedure, UPF, models each future accuracy as a Beta random variable, learns a simple linear forecaster from a small offline set of past model–dataset pairs, and retrains whenever the low-quantile forecast cost of retraining falls below that of keeping the current model. On seven classification datasets, the paper reports that UPF achieves lower combined cost than drift-detection baselines, the cost-aware CARA method, and an offline reinforcement learning baseline. If the claim holds, practitioners can make retraining decisions with only a handful of historical data points and a user-specified cost ratio, without expensive shift-detection machinery.

What carries the argument

The load-bearing object is the performance forecaster: a set of Beta distributions $\mathrm{Beta}(\alpha(r_{i,j}), \beta(r_{i,j}))$ over the random costs $A_{i,j}$, with parameters recovered from a linear mean model $\mu_\phi(r_{i,j})$ and a constant variance $\sigma_\phi$ on the feature vector $r_{i,j} = [i, j, j-i, z_{\mathrm{shift}}]$. The mean model is fitted by maximum likelihood on a regression dataset built from all observed model–dataset pairs, and refit whenever new online data arrives. Decisions come from a quantile rule: at time $t$, compute the $\delta$-quantile (default $\delta=0.95$) of the recursively defined cost random variables $\tilde{C}_{\theta_{<t}\mid\text{retrain}}$ and $\tilde{C}_{\theta_{<t}\mid\text{keep}}$, and retrain exactly when the first is smaller. The paper shows this structure is a special parameterization of Q-learning on the deterministic retraining MDP, which it uses to explain why generic offline RL methods are unsuitable in this low-data regime.

What would settle it

On a real-world stream where model performance drops discontinuously rather than gradually — for instance, a sudden change in the label distribution after the offline period — measure UPF's area-under-curve of combined cost against CARA and a fixed periodic schedule over the same range of $\alpha$; if UPF is not the best, the paper's claim that its forecaster generalizes to the tested class of shifts would be contradicted, since nothing in the method detects that the linear extrapolation has broken.

Watch

Extended reading notes

Core claim

The central claim is that the retraining problem can be solved by forecasting the entries of the performance matrix $\mathrm{pe}_{i,j}$, the expected loss of a model trained on dataset $D_i$ and evaluated on dataset $D_j$, including entries for models that do not yet exist. UPF learns a distribution for each entry from the small offline dataset, using features $(i, j, j-i, z_{\mathrm{shift}})$, and approximates the distribution as Beta. At each online step it builds the recursive random total cost $\tilde{C}(\theta)$ and retrains if the $\delta$-quantile of the cost with retraining is below the $\delta$-quantile of the cost with keeping the current model. The paper further derives the bound $r^* \le T - \sqrt{\alpha/L}$ on the number of retrains in an optimal schedule. Across seven classification datasets, UPF attains the lowest area-under-curve of combined cost over a range of cost ratios $\alpha$, and its retraining count tracks the oracle schedule more closely than the drift-detection, CARA, and offline reinforcement learning baselines do.

Load-bearing premise

The method assumes that the future accuracy of models that do not yet exist can be predicted by a linear regression on time indices and a shift statistic, trained on roughly a dozen offline performance points, so if real performance does not follow a smooth, extrapolable trend, the decision rule inherits whatever error the forecaster makes.

Editorial extensions

If this is right

  • Practitioners with as few as seven offline timesteps of historical model–dataset pairs can run UPF and, on the datasets tested, obtain lower combined retraining-plus-error cost than drift detectors, CARA, or an offline RL baseline.
  • The bound $r^* \le T - \sqrt{\alpha/L}$ yields a rule of thumb: if $T - \sqrt{\alpha/L} < 1$, no retraining should be performed, letting teams decide in advance whether a retraining policy is worth building.
  • Because UPF refits its forecaster as online data arrives, it adapts to new observations during the online period, whereas CARA commits to a threshold after an offline search.
  • Misspecifying the cost ratio $\alpha$ has limited impact on UPF's combined cost, so the method remains usable when the retraining-to-error cost ratio is only approximately known.
  • Replacing the Beta distributions with log-normal distributions extends the same framework to non-bounded losses such as RMSE or MAE.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The method's edge should be largest when retraining is expensive and performance decays smoothly; in the low-retraining-cost regime on the most irregular dataset (epicgames), the paper shows UPF struggling, so a user with very cheap retraining should verify forecaster timing before adopting the rule.
  • Because the forecaster's features encode only time indices and a crude shift statistic, abrupt regime changes or periodic recurrence could break the linear extrapolation; coupling UPF with a monitor of forecast error would be a natural safeguard the paper does not develop.
  • The recursive cost construction is a finite-horizon dynamic program, so replacing the linear mean forecaster with a better-calibrated uncertainty model could yield the same decisions from even fewer offline data points.
  • The paper's own suggestion of transferring schedulers across datasets is the most direct route to making UPF practical when historical records exist for only a few tasks.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 4 minor

Summary. The paper studies when to retrain a deployed machine learning model by minimizing a cost that combines retraining cost with expected error over an online horizon. It formulates the problem as a binary decision sequence, states an upper bound on the number of retrains (Proposition 3.1), and introduces UPF, which models future model accuracies as Beta random variables, learns their mean with a linear regression on temporal features, and makes retraining decisions by comparing δ-quantiles of the total cost under retrain versus keep. Experiments on five real and two synthetic classification datasets compare UPF with drift detectors, CARA, and an offline-RL baseline, reporting AUC of cost versus α, with ablations on uncertainty, α misspecification, and reduced offline data.

Significance. If the empirical results were fully supported, UPF would be a practical, lightweight method for retraining decisions in low-data settings, and the MDP/offline-RL connection (Appendix A.11) is a useful framing. The paper also provides explicit comparisons with an oracle and ablations that test uncertainty, α robustness, and the amount of offline data. I find no circularity in the oracle use: it only defines the α-range for the AUC metric and does not inform any algorithm's decisions. The main weaknesses are a flawed theoretical bound, overstated consistency claims, an invalid significance test on iWild, and insufficient calibration evidence for the performance forecaster on which the decision rule depends.

major comments (4)
  1. [Section 3.2, Eq. (7); Appendix A.4] Proposition 3.1 is not correct as stated. The proof in Appendix A.4 shows that if L(T-r)^2 < α, then increasing the number of retrains from r to r+1 cannot reduce total cost, so the optimum has at most r retrains. Substituting r* into this condition gives L(T-r*)^2 < α ⇒ r* > T - sqrt(α/L), the reverse of the claimed inequality in Eq. (7). Also, with L=0 and any α>0, the right-hand side of Eq. (7) is -∞ while the true optimum is r*=0, so the statement is false without extra assumptions or clamping. Please correct the proposition and its proof, or remove it and the associated rule-of-thumb in Appendix A.4.1.
  2. [Abstract; Section 6, Table 1] The claim that UPF 'consistently outperforms existing baselines on 7 datasets' is contradicted by Table 1: on airplanes, CARA achieves AUC 2.2753 versus UPF's 2.2865 and is the reported significant winner. Appendix A.10 further states that UPF performs worse than other baselines at low α on epicgames. The abstract and the Section 6 sentence 'our proposed method achieves the best trade-off between the number of retrains and average accuracy across all baselines and datasets' should be qualified to reflect the actual pattern, e.g., best on 6 of 7 datasets with dataset-specific exceptions.
  3. [Section 5; Table 1, iWild column] The asterisk on the iWild entry (UPF 3.0498*) is statistically impossible with 3 trials: a Wilcoxon test at the 5% level with n=3 cannot attain p<0.05 (the minimum two-sided p-value is 0.25). Remove the significance claim for iWild or increase the number of trials; the same issue affects significance marks in Appendix A.11's Table 7, which also reports iWild with 3 trials.
  4. [Section 4.1, Eq. (13); Appendix A.7; Table 4] UPF's decision rule (Eq. 16) uses δ-quantiles of total cost, so its reliability depends on the calibration of the predictive distribution P_φ(A_{i,j}). The mean is a linear regression trained on only |M_{<0}|=21 offline pairs (Table 4), and it is used to predict online entries with indices outside the offline support. Equation (13) sets σ_φ constant, so the predictive intervals do not widen with horizon or extrapolation distance. The paper reports no calibration diagnostic for these intervals in the extrapolation regime; Appendix A.7 demonstrates only that deliberately worse forecasters degrade cost, not that the actual forecaster's uncertainty is well-calibrated. Please add an empirical coverage analysis of the predictive intervals as a function of j-i and of distance from the offline feature support, and consider a heteroscedastic or horizon-dependent variance model.
minor comments (4)
  1. [Appendix A.4.1, Figure 4] The caption refers to 'Proposition A.1', but the result being illustrated is Proposition 3.1; fix the cross-reference.
  2. [Appendix A.1, Table 3] On electricity, PF has the lower AUC (2.5884) and is marked with an asterisk, meaning PF significantly beats UPF there, but the text says statistical significance was observed 'across all datasets except for electricity'. Please clarify whether the asterisk on electricity denotes a significant difference in favor of PF or whether the text should be revised.
  3. [Section 5] Please specify exactly how α_max is computed from the oracle (per trial or per dataset) and whether the 10 α operating points are equally spaced; this matters for interpreting the AUC values in Table 1.
  4. [Appendix A.15] The list of timm model names is difficult to read because the formatting removes spaces between tokens; consider typesetting the list in monospace with one model per line.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: UPF's performance forecaster is fit on offline performance entries and evaluated on held-out online data, so its cost advantage is not forced by construction.

full rationale

I walked the derivation chain. The central claim is that UPF forecasts future performance entries pe_{i,j} (Eq. 2) using a regression dataset M<t built only from offline models and datasets (Eq. 10), then makes retraining decisions by comparing δ-quantiles of total cost (Eqs. 16-22). The prediction targets are observed 1-accuracy values of models that exist in the offline period, while the decision cost Cα(θ) (Eq. 3) is a separate quantity computed from actual test losses on the online period. Nothing in the derivation sets the forecasted performance equal to the objective, and the paper explicitly states that the oracle is used only to define the α range for AUC and that no algorithm uses oracle information ('None of the algorithms makes use of the oracle information'). The empirical comparison is also not forced: Table 1 shows CARA beating UPF on airplanes (2.2753 vs 2.2865), so the claimed advantage is dataset-dependent rather than a guaranteed identity. The ablation in Appendix A.7 degrades the forecaster and shows that the final cost responds to forecast error, which is exactly the behavior of a non-circular pipeline whose predictions are causally upstream of decisions. Self-citations are present—Ozmen et al. 2024 for the epicgames dataset and Schwinn et al. 2022 in related work—but neither is load-bearing for the UPF derivation or its evaluation; the Ozmen citation is a data source, and no uniqueness theorem or ansatz is imported from the authors' prior work. I therefore find no step in which a prediction or first-principles result reduces by construction to its own inputs.

Assumptions & free parameters 3 free parameters · 5 assumptions · 0 invented entities

The method itself introduces no new physical or mathematical entities. The main free choices are the forecaster's variance, the quantile level, and the data-fitted bound L used in the theoretical rule-of-thumb. The load-bearing assumptions are about forecastability and the adequacy of the Beta/independence model.

free parameters (3)
  • sigma_phi (constant performance variance)
    The forecaster learns a constant variance parameter sigma_phi maximizing the Gaussian likelihood in Eq. 13; it controls the spread of the predicted Beta distributions and hence the quantile rule.
  • Empirical bound L for Proposition 3.1 = max observed |pe_{i,t} - pe_{i+1,t}| on each dataset
    Appendix A.4.1 approximates the theoretical upper bound L by the empirical maximum over observed data, then uses it to claim guaranteed no-retrain thresholds; an empirical max is not a true upper bound.
  • Quantile level delta = 0.95
    Chosen as a 'standard confidence' value (Section 5). The ablation compares 0.95 vs 0.50, but no principled selection rule is given.
assumptions (5)
  • domain assumption Temporal correlation of model performances: 'we assume that there is a temporal correlation between the performances of different models trained at different times' (Section 4).
    The entire forecaster is motivated by this; no formal statement or test is provided.
  • domain assumption Performance random variables A_{i,j} are modeled as independent across i,j (Eq. 8-9).
    Independence is assumed for tractability; correlations in performance across time are likely and unmodeled.
  • domain assumption Beta distribution (after scaling) adequately models bounded 0-1 losses, and the Gaussian approximation in Eq. 11 is acceptable.
    The paper tests Gaussian vs Beta in Appendix A.8.1 and finds small differences, but the Beta form itself is not validated against data.
  • domain assumption The bound L >= |pe_{i,t} - pe_{i+1,t}| for all t (Eq. 6) holds or can be estimated.
    The proposition requires a known uniform bound; in practice the paper replaces it with an empirical max, which is not guaranteed.
  • domain assumption The offline period provides enough data (w=7) to learn a useful forecaster.
    The low-data regime is the motivating challenge; the paper only partially validates this via the w=2 and w=4 ablation.

how reviews work

0 comments
Cite this review

Pith. "Pith review of When to retrain a machine learning model." pith.science (2026). https://pith.science/paper/ISNXR2GC

@misc{pith2026250514903,
  author       = {Pith},
  title        = {Pith review of: When to retrain a machine learning model},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/ISNXR2GC}},
  note         = {Machine review of arXiv:2505.14903}
}
read the original abstract

A significant challenge in maintaining real-world machine learning models is responding to the continuous and unpredictable evolution of data. Most practitioners are faced with the difficult question: when should I retrain or update my machine learning model? This seemingly straightforward problem is particularly challenging for three reasons: 1) decisions must be made based on very limited information - we usually have access to only a few examples, 2) the nature, extent, and impact of the distribution shift are unknown, and 3) it involves specifying a cost ratio between retraining and poor performance, which can be hard to characterize. Existing works address certain aspects of this problem, but none offer a comprehensive solution. Distribution shift detection falls short as it cannot account for the cost trade-off; the scarcity of the data, paired with its unusual structure, makes it a poor fit for existing offline reinforcement learning methods, and the online learning formulation overlooks key practical considerations. To address this, we present a principled formulation of the retraining problem and propose an uncertainty-based method that makes decisions by continually forecasting the evolution of model performance evaluated with a bounded metric. Our experiments addressing classification tasks show that the method consistently outperforms existing baselines on 7 datasets.

Figures

Figures reproduced from arXiv: 2505.14903 by the authors.

Figure 1
Figure 1. The Retraining Problem: The performance of a model trained on a dataset Di gradually decreases when evaluated on more recent datasets in the presence of distribution shift. The task is to determine when retraining is beneficial compared to keeping an older model. We must take into consideration the trade-off between potential accuracy gains and the costs associated with retraining. In the training schedule θ shown h… view at source ↗
Figure 2
Figure 2. Results on the electricity dataset. Top) Cost Cˆα(θ) vs α. Bottom) Number of retrains vs α. In the top figure, we can see that UPF consistently reaches low Cˆα(θ) across different α. In the bottom figure, the number of retrains of UPF follows the optimal baseline more closely. the number of retrains vary as α is changed. Appendix A.10 contains the complete set of results and figures. First, examining the behavior of… view at source ↗
Figure 3
Figure 3. Impact of wrong α measured by the percentage increase of Cˆα(θ) on the epicgames dataset. left) CARA right) UPF. Overall, both methods are reasonably robust to a wrong α specification, with UPF being the more robust. A.3. Extended Discussion of Related Work Retraining problem Few works explicitly target the retraining problem. Zliobait ˇ e et al. ˙ (2015) propose a return on investment (ROI) framework to monitor and… view at source ↗
Figures from the paper (15 more)
Figure 4
Figure 4. Figure 4: Results on the Gauss dataset, with the α values from Proposition A.1 providing different upper bounds on the optimal number of retrain r ∗ . Left) Cost Cˆα(θ) vs α. Right) Number of retrains vs α. A.5. Bounding L In this section, we provide more details on the known re…
Figure 5
Figure 5. Figure 5: Airplanes. Cost Cˆα(θ) vs α with the forecasting performance metrics (mae and bias). 0.00 0.02 0.04 0.06 0.08 0.10 3.20 3.22 3.24 3.26 3.28 C( ) test mae 0.2446 0.3103 0.3326 0.00 0.02 0.04 0.06 0.08 0.10 3.20 3.22 3.24 3.26 3.28 C( ) test bias 0.2393 0.31 0.3326 [PIT…
Figure 6
Figure 6. Figure 6: Epicgames. Cost Cˆα(θ) vs α with the forecasting performance metrics (mae and bias). 21 [PITH_FULL_IMAGE:figures/full_fig_p021_6.png]
Figure 7
Figure 7. Figure 7: Circles. Cost Cˆα(θ) vs α with the forecasting performance metrics (mae and bias). 0.0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 C( ) test mae 0.045 0.0649 0.0805 0.0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 C( ) test bias -0.0416 -0.02 0.0805 [PITH_FULL_IMAGE:figures/full_fig_p022_7.png]
Figure 8
Figure 8. Figure 8: Gauss. Cost Cˆα(θ) vs α with the forecasting performance metrics (mae and bias). 22 [PITH_FULL_IMAGE:figures/full_fig_p022_8.png]
Figure 9
Figure 9. Figure 9 [PITH_FULL_IMAGE:figures/full_fig_p023_9.png]
Figure 11
Figure 11. Figure 11: Circles 0.0 0.2 0.4 0.6 2.8 3.0 3.2 3.4 C( ) strategy UPF UPF (Gaussian) [PITH_FULL_IMAGE:figures/full_fig_p024_11.png]
Figure 13
Figure 13. Figure 13: Result on the electricity dataset. left) Cost Cˆα(θ) vs α. right) Number of retrains vs α. 0.00 0.02 0.04 0.06 0.08 0.10 1.100 1.125 1.150 1.175 1.200 1.225 1.250 1.275 1.300 C( ) 0.00 0.02 0.04 0.06 0.08 0.10 0 1 2 3 4 5 6 7 num. retrains [PITH_FULL_IMAGE:figures/fu…
Figure 14
Figure 14. Figure 14: Result on the yelp dataset. left) Cost Cˆα(θ) vs α. right) Number of retrains vs α. 25 [PITH_FULL_IMAGE:figures/full_fig_p025_14.png]
Figure 15
Figure 15. Figure 15: Result on the epicgames dataset. left) Cost Cˆα(θ) vs α. right) Number of retrains vs α. 0.0 0.1 0.2 0.3 0.4 0.5 0.5 0.6 0.7 0.8 0.9 1.0 1.1 1.2 1.3 C( ) 0.0 0.1 0.2 0.3 0.4 0.5 0 1 2 3 4 5 6 7 8 num. retrains [PITH_FULL_IMAGE:figures/full_fig_p026_15.png]
Figure 16
Figure 16. Figure 16: Result on the Gauss dataset. left) Cost Cˆα(θ) vs α. right) Number of retrains vs α. 26 [PITH_FULL_IMAGE:figures/full_fig_p026_16.png]
Figure 17
Figure 17. Figure 17: Result on the circles dataset. left) Cost Cˆα(θ) vs α. right) Number of retrains vs α. 0.0 0.2 0.4 0.6 2.8 3.0 3.2 3.4 3.6 3.8 4.0 4.2 C( ) 0.0 0.2 0.4 0.6 0 1 2 3 4 5 6 num. retrains strategy UPF CARA CARA cumul. CARA per. KSWIN-5% KSWIN-50% FHDDM-5% FHDDM-50% ADWIN-…
Figure 18
Figure 18. Figure 18: Result on the airplanes dataset. left) Cost Cˆα(θ) vs α. right) Number of retrains vs α. We additionally include results with the oracle baselines in Figures 19. We can see that the UPF baseline is reasonably close to the optimal algorithm in two of the datasets (circ…
Figure 19
Figure 19. Figure 19: Result on the circles (left), electricity (middle) and epicgames (right) datasets. Top) Cost Cˆα(θ) vs α. Bottom) Number of retrains vs α. A.11. Methodology as offline RL We can frame the retraining problem as an offline RL task (Levine et al., 2020). We define a stat…
Figure 20
Figure 20. Figure 20: Visualization of the MDP function: r(at, st+1) = −αat − pest+1 . (67) To match our setting, the discount factor has to be set to one γ = 1. The goal is to learn a policy π on offline data to generalize to the online period. The offline dataset is given by: Dof f line …

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

18 extracted references · 15 canonical work pages

  1. [3]

    staleness cost

    Impact of wrong α measured by the percentage increase of ˆCα(θ) on the epicgames dataset.left)CARAright)UPF. Overall, both methods are reasonably robust to a wrongαspecification, with UPF being the more robust. A.3. Extended Discussion of Related Work Retraining problemFew works explicitly target the retraining problem. ˇZliobait˙e et al. (2015) propose a...

  2. [4]

    Scalable deep reinforce- ment learning for vision-based robotic manipulation

    Kalashnikov, D., Irpan, A., Pastor, P., Ibarz, J., Herzog, A., Jang, E., Quillen, D., Holly, E., Kalakrishnan, M., Vanhoucke, V ., and Levine, S. Scalable deep reinforce- ment learning for vision-based robotic manipulation. In Proceedings of The 2nd Conf. on Robot Learning. Kaplan, J., McCandlish, S., Henighan, T., Brown, T. B., Chess, B., Child, R., Gray...

  3. [7]

    These approaches may work well when retraining costs are low, but they become unsuitable when retraining is expensive – it is not always optimal to retrain after every minor shift

    relies on a Kolmogorov-Smirnov Windowing test. These approaches may work well when retraining costs are low, but they become unsuitable when retraining is expensive – it is not always optimal to retrain after every minor shift. This is tied to a more general weakness of lacking adaptability to varying costs. While the significance level parameteter can be...

  4. [9]

    and active testing (Kossen et al., 2021). Part of the problem is similar in that the goal is to estimate performance; however, the similarity ends there, as these methods generally assume access to the model f for which performance is estimated, as well as access to the features of the dataset (Garg et al., 2020). Our approach involves forecasting perform...

  5. [10]

    Some methods integrates epistemic uncertainty on Q-function to account for the distribution shift of unseen actions (Kumar et al., 2020; O’Donoghue et al., 2017; Luis et al., 2023)

    or Q-functions(Chebotar et al., 2023). Some methods integrates epistemic uncertainty on Q-function to account for the distribution shift of unseen actions (Kumar et al., 2020; O’Donoghue et al., 2017; Luis et al., 2023). If we view the states as time and the model in use, and actions as either retraining or maintaining the current model, we can frame this...

  6. [13]

    w denotes the number of timestep of the offline phase, T denotes the number of timestep of the online phase

    Dataset description. w denotes the number of timestep of the offline phase, T denotes the number of timestep of the online phase. The Model describes the architecture used for eachf t. Dataset Modelα max w∣M <0∣T Dataset size (∣D∣) Num. features Task Total N Gauss XGBoost 0.5 7 21 8 5000 2 Binary - (Synthetic) circles XGBoost 0.25 7 21 8 5000 2 Binary - (...

  7. [14]

    We follow Mahadevan & Mathioudakis (2024) and use the Sklearn Multiflow library version (Montiel et al.,

    is also a binary task where the task is to predict if a flight will be delayed. We follow Mahadevan & Mathioudakis (2024) and use the Sklearn Multiflow library version (Montiel et al.,

  8. [17]

    relative staleness cost

    AUC of the combined performance/retraining cost metric ˆCα(θ), computed over a range of α values, for all datasets. The bolded entries represent the best, and the underlined entries indicate the second best. The ∗ The ∗ denotes statistically significant difference with respect to the next best baseline, evaluated using a Wilcoxon test at the5%significance...

Show all 18 references
  1. [19]

    Result on the circles (left), electricity (middle) and epicgames (right) datasets.Top)Cost ˆCα(θ) vs α.Bottom)Number of retrains vsα. A.11. Methodology as offline RL We can frame the retraining problem as an offline RL task (Levine et al., 2020). We define a state space where ...

  2. [78]

    Therefore, with this specific parameterization, we can establish a connection between Q-learning and our learning method

    can then be decomposed into 2 terms, where one of the terms corresponds to our objective: L= ∑ n (Qϕ(sn, an)−y n)2 (84) =(−αa n,x−f ϕ(sn)+max(−α−f ϕ(sT,T ),−f ϕ(sT,x))(85) −(anα+pe sn+max an+1 Qϕ(t(sn, an), an+1))) 2 (86) =(f ϕ(sn)−pe sn+max(−α−f ϕ(sT,T ),−f ϕ(sT,x))+max an+1 ...

  3. [2002]

    The iwildcam 2020 competition dataset

    Beery, S., Cole, E., and Gjoka, A. The iwildcam 2020 competition dataset. arXiv preprint arXiv:2004.10340,

  4. [2008]

    can be used to analyze generalization performance and thus to derive retraining schedules in more complex scenarios. In the context, of the proposed retraining framework, bounds like this theoretically allow us to make precise statements about the benefit of retraining L to de...

  5. [2012]

    Normalized AUC of the combined performance/retraining cost metric ˆCα(θ), computed over a range of α values, for all datasets

    For testing, we evaluate only on samples from the most 33 Table 9.w=4 . Normalized AUC of the combined performance/retraining cost metric ˆCα(θ), computed over a range of α values, for all datasets. We normalize by dividing by the best value for each dataset. The bolded entrie...

  6. [2016]

    The Freeze-Thaw method, introduced by Swersky et al

    for a review on this topic), commonly used in the Hyperparameter Optimization (HPO) field. The Freeze-Thaw method, introduced by Swersky et al. (2014), leverages Gaussian Processes to predict the trajectory of validation loss, enabling early stopping and optimization of the hy...

  7. [2017]

    Predicting with confidence on unseen dis- tributions

    9 Guillory, D., Shankar, V ., Ebrahimi, S., Darrell, T., and Schmidt, L. Predicting with confidence on unseen dis- tributions. In 2021 IEEE/CVF Int. Conf. on Computer Vision (ICCV), pp. 1114–1124,

  8. [2018]

    ,(x(i+1)∣D∣, y(i+1)∣D∣)∈R d ×{±1} be drawn i.i.d

    )).Let (x1, y1), . . . ,(x(i+1)∣D∣, y(i+1)∣D∣)∈R d ×{±1} be drawn i.i.d. from a (θ∗, σ)-Gaussian model with ∥θ∗∥2 = √ d. Let ˆw∈Rd be the unit vector in the direction of z= 1 (i+1)∣D∣ ∑ (i+1)∣D∣ i=1 yixi, i.e., ˆw=z/∥z∥2. Then with probability at least 1−2 exp(− d 8(σ2+1)), th...

  9. [2020]

    Active Testing: Sample-Efficient Model Evaluation

    Kossen, J., Farquhar, S., Gal, Y ., and Rainforth, T. Active Testing: Sample-Efficient Model Evaluation. arXiv:2103.05331,

  10. [2021]

    Harries, M. et al. Splice-2 comparative evaluation: Electric- ity pricing. He, K., Zhang, X., Ren, S., and Sun, J. Deep residual learn- ing for image recognition.2016 IEEE Conf. on Computer Vision and Pattern Recognition (CVPR),

Pith tools

Reviewed August 7, 2026 · model on record in the stance chip above.