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.
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
benchmarksextra. - 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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file timemachines-2.0.1.tar.gz.
File metadata
- Download URL: timemachines-2.0.1.tar.gz
- Upload date:
- Size: 19.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cbe80d612b4c4d405bc1fbe8afce3a7c068d7126fa0802b6842216cb0b987176
|
|
| MD5 |
ff472397097e50b6678b93f3a6e66055
|
|
| BLAKE2b-256 |
b3fba69eb06bb6498851aed09e22c4b777b5cb6b8be2e5dd30dfa96ca60d8c9f
|
File details
Details for the file timemachines-2.0.1-py3-none-any.whl.
File metadata
- Download URL: timemachines-2.0.1-py3-none-any.whl
- Upload date:
- Size: 14.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75b9a3f64892f6b8562224672f1eb92c6e08052a2eadb58aeffb8060b9dbc34c
|
|
| MD5 |
5f9512551954821d0fec49a26c504b6a
|
|
| BLAKE2b-256 |
a8b28d761a996f8848fd56efd7d08620077a4f7d47656d7938bd92356b3ad91d
|