Skip to main content

Temporal online machines: streaming anomaly detection and sequential decisions, built on calibrated surprise streams from skaters.

Project description

timemachines

Temporal online machines: streaming decision layers — anomaly detection first — built on the calibrated surprise streams of skaters.

skating

from timemachines import wald

f = wald(k=3)
state = None
for y in stream:
    dists, state = f(y, state)              # skaters forecasts pass through
    if state["pvalue"] is not None and state["pvalue"] < 1e-4:
        alarm(y, state["pvalue"], state["run"])

That 1e-4 is a false-alarm rate, not a tuned threshold: wald emits a calibrated per-observation p-value, so alarming on p < alpha yields a false-alarm rate of approximately alpha by construction. No other streaming detector family offers that; it is this package's reason to exist.

v2: what happened here

v1 of timemachines was a zoo of forecasting wrappers. It was deprecated in favour of skaters, which does the forecasting job properly: one pass, constant memory, stdlib only, distributional outputs, and — crucially for us — the prediction parade: alongside each forecast, the standardized surprise z of every arriving point under the predictions previously made for it.

v2 is the rebirth one layer up. A skaters forecaster (a body) turns any stream into forecasts plus calibrated surprises; this package's heads turn surprises into decisions with controlled error rates. Bodies are few and stable; heads multiply — that is why they get their own package. (from timemachines import laplace worked in the v1 shim and still works.)

Why a forecaster-first detector

The hard part of anomaly detection is not the detector — it is the null. A calibrated online forecaster is the best null model there is: under it, the surprise stream is approximately iid N(0,1), which is exactly the homogeneous input every classical detection method assumes and raw data never provides. Two measured consequences (protocols and full tables in benchmarks/):

Other people's detectors get better in these coordinates. Same detector, same series (UCR anomaly archive, 60 series), only the input changed:

detector raw series laplace-transformed lift
DSPOT (EVT thresholding, KDD 2017) 0.100 0.517 5.2x
RRCF (random cut forest, ICML 2016) 0.250 0.450 1.8x

Other people's forecasters get better too. One-step log-likelihood on 30 FRED series, exact change of variables through the bijection z_t = Phi^-1(F_t(y_t)):

opponent lift (nats/point) wins
ETS +2.04 30/30
AutoARIMA +2.07 30/30
GARCH(1,1) +1.97 30/30
Prophet +2.07 30/30

Fronted opponents converge to the skaters forecaster plus a few hundredths of a nat: the body had already extracted nearly everything they know how to model.

The machines

name job state it adds
wald(k) sequential anomaly detection pvalue (calibrated), d2 (the Wald statistic z' Sigma^-1 z), run (spike vs break)

Named machines are curated recipes — a body, a head, and settings that earned their defaults on benchmarks. The composable parts underneath:

  • mahalanobis(base, k, ...) — the detection head on any parade-wrapped skater: robust streaming location/scatter of the surprise vector (factor model + exact Woodbury inverse), an empirical null (two-moment Satterthwaite, winsorized against masking), Huberised updates with a changepoint escape.
  • zbank(k, sigmas, strides) — a feature bank of bodies across memory and clock scales, concatenated surprises, for multi-scale detection.
  • laplace, parade — re-exported from skaters for convenience.

Roadmap heads, each named for its theorem: page (CUSUM run-length changepoints), pickands (EVT/GPD tails for extreme p-values).

Design rules

  • Bodies live in skaters, heads live here. The API boundary is the parade state contract (state["z"], state["pit"]).
  • Dependency arrows point one way: this package depends on skaters, never the reverse. The core is pure stdlib on top of it; third-party detectors and benchmark tooling sit behind the benchmarks extra.
  • Everything is one-pass, constant-memory, strictly causal: scores at time t use only observations up to t. No whole-series normalisation, ever.

Install

pip install timemachines        # v2: requires skaters

v1 (<2.0) remains on PyPI for pinned users; it is unmaintained.

MIT licensed.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

timemachines-2.0.0a1.tar.gz (17.6 kB view details)

Uploaded Source

Built Distribution

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

timemachines-2.0.0a1-py3-none-any.whl (14.2 kB view details)

Uploaded Python 3

File details

Details for the file timemachines-2.0.0a1.tar.gz.

File metadata

  • Download URL: timemachines-2.0.0a1.tar.gz
  • Upload date:
  • Size: 17.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for timemachines-2.0.0a1.tar.gz
Algorithm Hash digest
SHA256 f2f0a97de47a3968614e3bb73962c0a3c7c04e72fb009a0ec97b76ddf3537a9c
MD5 d097634c317b5a13e6f8f778d73eaa84
BLAKE2b-256 74076c24a8864c3267b00db93c2778ddbbe6c955db622ea4042ae86d9ea2ed8e

See more details on using hashes here.

File details

Details for the file timemachines-2.0.0a1-py3-none-any.whl.

File metadata

  • Download URL: timemachines-2.0.0a1-py3-none-any.whl
  • Upload date:
  • Size: 14.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for timemachines-2.0.0a1-py3-none-any.whl
Algorithm Hash digest
SHA256 ec1f123c8f739c12906352ccd3da288a16bd3cea1cb1ede232b4c82ed101b814
MD5 1fc3a8fa450b5127ec9fb4768c79da8c
BLAKE2b-256 93b3490d0a7520aa4825ca053a69b2c93545435e1fc52e14cdf191921dfc0cf8

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