Skip to main content

Lightweight univariate time-series forecasting with auto-tuned models — NumPy only.

Project description

randomstatsmodels

Check out medium story here: Medium Story

Lightweight univariate time-series forecasting with auto-tuned models — NumPy only, no heavy dependencies.

19 forecasting models with a unified .fit(y) / .predict(h) API. Each Auto* wrapper grid-searches hyperparameters on a validation split and refits the best configuration on the full series.

Installation

pip install randomstatsmodels

Requires: Python 3.9+ and NumPy.


Quick Start

from randomstatsmodels import AutoKoopman, AutoPolymath, AutoSSA
import numpy as np

rng = np.random.default_rng(42)
t = np.arange(200)
y = 10 + 0.05 * t + np.sin(2 * np.pi * t / 24) + 0.1 * rng.normal(size=t.size)

h = 12  # forecast horizon

model = AutoKoopman().fit(y)
yhat = model.predict(h)
print("Forecast:", yhat[:5])
print("Best config:", model.best_)

Models

19 models organised by approach. Every Auto* class accepts a parameter grid, fits/evaluates candidates, and exposes .fit(y) and .predict(h).

Classical

Model Description
AutoNaive Baselines: last value, seasonal, drift, mean
AutoHoltWinters Triple exponential smoothing (level + trend + seasonal)
AutoThetaAR Theta method with AR(1) residual correction
AutoFourier Harmonic regression with optional linear trend

Regression-Based

Model Description
AutoNEO Nonlinear Evolution Operator — polynomial AR features
AutoPolymath Polynomial + Fourier basis + ridge regression
AutoLocalLinear Weighted local regression with exponential decay
AutoPALF Proximal Aggregation Lag Forecaster — penalised lag weighting

Decomposition / Spectral

Model Description
AutoSSA Singular Spectrum Analysis — SVD on trajectory matrix
AutoKoopman Dynamic Mode Decomposition / Koopman operator via delay embedding
AutoSpectralGradient Spectral derivative flow — extrapolates Fourier mode dynamics

Advanced / Calculus-Based

Model Description
AutoFracDiff Fractional calculus — Grunwald-Letnikov fractional differencing + AR
AutoGreensKernel Integral equation — Green's function convolution kernel
AutoPDEField Partial differential equations — advection-diffusion on time-scale field
AutoVariationalPath Calculus of variations — Euler-Lagrange optimal path

Hybrid / Meta

Model Description
AutoHybridForecaster Linear (Fourier + trend + AR) + GRU residual network
AutoMELD Multiscale embedding with Random Fourier Features + kNN
AutoRIFT Recursive Information Flow Tensor — information-channel dynamics
AutoEnsemble Combines multiple base forecasters with learned weights

Advanced Ensembles

Model Description
AutoStacked Meta-learner stacking — ridge regression on base model predictions
AutoBagged Block-bootstrap bagging — median of models trained on resampled series
AutoDynamic Horizon-adaptive weighting — model weights change per forecast step

Benchmarks

22 models evaluated on 20 real-world time series (10 from FRED with 300-600 points, 10 classic hardcoded) using speed="slow" grids. Ranked by RMSE per dataset. Includes 5 statsforecast baselines. AutoRIFT and AutoHybridForecaster excluded from fast benchmark (>30s fit time per dataset).

Overall Rankings

Rank Model Type Avg Rank #1st #Top3 #Top7 Median MAE Median RMSE Median MAPE Median sMAPE
1 SF_AutoTBATS statsforecast 7.30 1 5 10 18.28 23.53 7.66% 7.77%
2 SF_AutoARIMA statsforecast 8.00 1 3 10 18.03 23.29 7.14% 7.65%
3 AutoNEO randomstatsmodels 8.94 2 4 8 25.86 36.51 7.38% 7.59%
4 AutoMELD randomstatsmodels 8.95 2 4 7 20.80 27.83 7.79% 7.84%
5 SF_AutoETS statsforecast 9.35 0 0 9 33.65 38.18 11.53% 12.08%
6 SF_AutoCES statsforecast 9.80 5 6 9 18.96 23.27 10.70% 10.71%
7 AutoNaive randomstatsmodels 10.05 1 1 7 24.43 30.87 12.94% 13.68%
8 AutoKoopman randomstatsmodels 10.75 0 5 5 31.60 40.47 12.63% 12.59%
9 AutoPolymath randomstatsmodels 10.84 0 4 6 22.65 29.33 9.48% 9.00%
10 SF_AutoTheta statsforecast 11.00 0 3 7 20.07 25.67 8.97% 9.27%
11 AutoPALF randomstatsmodels 11.00 2 2 7 42.30 49.53 12.77% 13.84%
12 AutoKNN randomstatsmodels 11.05 1 2 8 35.92 43.24 12.71% 13.89%
13 AutoPDEField randomstatsmodels 11.25 0 2 5 36.12 41.58 11.16% 11.66%
14 AutoSSA randomstatsmodels 11.75 0 3 6 31.47 38.00 12.24% 13.28%
15 AutoThetaAR randomstatsmodels 11.80 0 1 5 38.03 43.81 15.11% 16.76%
16 AutoHoltWinters randomstatsmodels 12.20 2 2 7 49.16 60.66 14.24% 14.63%
17 AutoGreensKernel randomstatsmodels 12.60 1 3 6 40.53 48.61 15.87% 16.51%
18 AutoVariationalPath randomstatsmodels 12.80 0 3 5 57.52 67.07 13.10% 13.52%
19 AutoSpectralGradient randomstatsmodels 13.25 1 3 4 54.54 64.10 15.53% 15.02%
20 AutoFourier randomstatsmodels 14.15 1 3 4 69.65 83.66 22.71% 22.45%
21 AutoLocalLinear randomstatsmodels 15.10 0 1 5 56.44 63.38 20.47% 25.01%
22 AutoFracDiff randomstatsmodels 18.60 0 0 0 110.80 113.95 30.43% 36.00%

Speed Presets

Every Auto* model accepts a speed parameter controlling grid search thoroughness:

from randomstatsmodels import AutoKoopman

model = AutoKoopman(speed="super_fast")   # ~1 combo, seconds
model = AutoKoopman(speed="fast")         # ~6 combos
model = AutoKoopman(speed="normal")       # default grids
model = AutoKoopman(speed="slow")         # ~864 combos
model = AutoKoopman(speed="super_slow")   # ~2640 combos

Datasets

20 real-world datasets (10 from FRED with 300-600 points, 10 classic):

Source Datasets
FRED (300-600 pts) USUnemployment, USConsumerPrices, USIndProdIndex, USHousingStarts, USMoneySupply, FedFundsRate, USRetailSales, USElectricity, SP500, US10YrTreasury
Classic (89-168 pts) MilkProduction, GoldPrice, NileMinLevel, AirPassengers, CO2, GlobalTemp, IntlAirline, Lynx, Nile, Sunspots

Key Findings

  • SF_AutoTBATS is #1 by RMSE — strong on seasonal FRED data
  • SF_AutoARIMA is #2 — most consistent across dataset types
  • AutoNEO is the best randomstatsmodels model (#3) — polynomial AR features
  • AutoMELD is #4 — multiscale embedding excels on longer series
  • AutoKoopman (#8) — DMD eigenvalue propagation, 5 top-3 finishes
  • No single model dominates — model selection matters for your data type

Benchmarking Your Own Data

from randomstatsmodels import AutoKoopman

model = AutoKoopman(speed="slow")
model.fit(y_train)
preds = model.predict(h)

Metrics

from randomstatsmodels.metrics import mae, mse, rmse, mape, smape

The evaluation framework also provides MASE, MSSE, and Median Absolute Error.


License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

randomstatsmodels-4.0.0.tar.gz (105.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

randomstatsmodels-4.0.0-py3-none-any.whl (119.0 kB view details)

Uploaded Python 3

File details

Details for the file randomstatsmodels-4.0.0.tar.gz.

File metadata

  • Download URL: randomstatsmodels-4.0.0.tar.gz
  • Upload date:
  • Size: 105.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.1

File hashes

Hashes for randomstatsmodels-4.0.0.tar.gz
Algorithm Hash digest
SHA256 9107e7ae0e79a97f00a978e72e8448d6bce452bc5acc87be8d2a26cf60aaa012
MD5 930652d8753325cfc049a1bc5ac7b02a
BLAKE2b-256 39893fcbdc7c179bb2b7446df129bd7bbc7a15942d54a00b6913c1e96b58dcf6

See more details on using hashes here.

File details

Details for the file randomstatsmodels-4.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for randomstatsmodels-4.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 62fa362ee35d7edf6260e0049eb7934edc7560c1192a3a0abd96042640c4f58c
MD5 c7258954a5c9604d253bff3e790ffe15
BLAKE2b-256 8a4642b8f15ff2464cdd8e2c2e5eedabefdd130e4f688d59a7f6f3969aded6a0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page