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

Per-Model Speed Benchmarks (100 real-world datasets)

AutoNaive

Speed Mean MAE Mean RMSE Mean sMAPE Median MAE Median RMSE Median sMAPE Median Fit (s) OK
super_fast 48355.60 83837.06 32.57% 41.87 51.48 20.43% 0.00 100
fast 48268.56 83741.53 30.11% 39.12 46.52 19.94% 0.01 100
normal 49620.68 85113.47 28.95% 26.38 31.77 16.16% 0.04 100
slow 49620.69 85114.67 28.87% 26.38 31.77 15.10% 0.04 100
super_slow 49620.68 85114.66 28.83% 26.38 31.77 15.10% 0.05 100

AutoThetaAR

Speed Mean MAE Mean RMSE Mean sMAPE Median MAE Median RMSE Median sMAPE Median Fit (s) OK
super_fast 66109.39 105001.45 27.89% 38.03 43.81 15.97% 0.02 100
fast 66109.39 105001.45 27.89% 38.03 43.81 15.97% 0.02 100
normal 66109.39 105001.45 27.89% 38.03 43.81 15.97% 0.02 100
slow 66109.39 105001.45 27.89% 38.03 43.81 15.97% 0.02 100
super_slow 66109.39 105001.45 27.89% 38.03 43.81 15.97% 0.02 100

AutoKNN

Speed Mean MAE Mean RMSE Mean sMAPE Median MAE Median RMSE Median sMAPE Median Fit (s) OK
super_fast 45452.00 81194.06 31.06% 37.34 43.61 17.88% 0.01 100
fast 45304.15 81091.92 31.31% 40.02 48.08 18.00% 0.03 100
normal 45697.77 81570.68 31.60% 39.12 47.55 17.76% 0.07 100
slow 46640.29 82929.84 29.64% 40.49 51.34 18.34% 0.20 99
super_slow 48880.39 85178.97 29.65% 40.49 51.34 19.27% 0.70 97

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.3.tar.gz (109.0 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.3-py3-none-any.whl (122.0 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: randomstatsmodels-4.0.3.tar.gz
  • Upload date:
  • Size: 109.0 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.3.tar.gz
Algorithm Hash digest
SHA256 58bab3d867b255f381137c67e7bb8ade57c44b46e4d85c7ecf5a1c07d147d877
MD5 5c0655593284d5f05c2e05a3bb80af82
BLAKE2b-256 6d08d50053ab8aba7b53a0caacc8e19a8da937ada3976fb36d99454bd8fb9eb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for randomstatsmodels-4.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 03324c9f66166014c0bc6fad91ff58f86fd985384b8054379b3e3b665c70b0e9
MD5 88ad9a3c0005ba38c6410d1322587b73
BLAKE2b-256 49b41bb47b84ac1f4e2c4f63492c9cb682f0d94bf249e8029f0caa65d8c74dc0

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