You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Learn a shallow, interpretable sample-weight map over driver features (window/neighbor/density/residual) — catches INTERACTION structure no single driver does. Must beat uniform, the best single driver, AND a null. numpy-only.
Downweight training samples that distort the fit, via CLOSED-FORM ridge influence (leverage / LOO residual / Cook's distance) — analytic, no resampling. Held-out + null validated. numpy-only.
Recency sample weighting for regime drift; selects recent-row emphasis on train only, then validates against held-out and permutation null. numpy-only.
Correct for redundancy in tabular/time-series ML — downweight dense / near-duplicate rows (effective-sample-size correction) so a fit is not dominated by autocorrelated repeats. Held-out + null validated. numpy-only.
Search periodic sample-weight patterns (sine/comb/sawtooth) that lift out-of-period transfer for time-ordered ML; bootstrap to robust per-record weights. numpy-only.