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 (0.01s baseline)

AutoThetaAR

Speed Median MAE Median RMSE Median MAPE Median sMAPE Median Fit (s) OK
super_fast 38.03 43.81 14.61% 15.97% 0.03 100
fast 38.03 43.81 14.61% 15.97% 0.03 100
normal 38.03 43.81 14.61% 15.97% 0.03 100
slow 38.03 43.81 14.61% 15.97% 0.02 100
super_slow 38.03 43.81 14.61% 15.97% 0.02 100

AutoNaive

Speed Median MAE Median RMSE Median MAPE Median sMAPE Median Fit (s) OK
super_fast 41.87 51.48 19.90% 20.43% 0.00 100
fast 39.12 46.52 18.85% 19.94% 0.01 100
normal 26.38 31.77 14.50% 16.16% 0.02 100
slow 26.38 31.77 13.77% 15.10% 0.02 100
super_slow 26.38 31.77 13.77% 15.10% 0.03 100

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.1.tar.gz (108.5 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.1-py3-none-any.whl (121.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: randomstatsmodels-4.0.1.tar.gz
  • Upload date:
  • Size: 108.5 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.1.tar.gz
Algorithm Hash digest
SHA256 0e8f4ed4d2ac12469cb20c070a658ef0a4ad9c5a13638a3feac8954756191cfc
MD5 a93e415998fe776b6262cf2b814b47e6
BLAKE2b-256 68030cdfa1d1fe0acf390bb2503021114fcabe6012a865aa24860be4488b7350

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for randomstatsmodels-4.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 eaa65e0ce7df3de17c0f75c1211661d0a60767594d88bdc3b42f73970977d82b
MD5 ca43590f0a39696a90f73ffff77a6f69
BLAKE2b-256 81b34895aa119115cae4b43dd2ef56c373f9f0b07d8d5f557ce80cb92096f1dd

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