I remember your post from a few weeks ago about the linear-time dimensionality reduction. Is this tool using that same algorithm under the hood?
I like the focus on privacy, but I'm curious about the 'Forecasting' feature. Is that also running entirely in WASM? I'd imagine running a decent forecasting model in the browser might be heavy on the client side.
romanfll•1h ago
Good catch—it's actually a hybrid approach:
1. Anomaly Detection & Visualisation: This runs 100% locally via WASM using the linear-time algorithms I shared here previously.
2. Forecasting: This hits our DriftMind API [1][2].
We designed the API to be transient-only. The data is processed in-memory for the forecast and immediately discarded; absolutely nothing is persisted to disk or used for training. We wanted to keep the browser lightweight while still offering the heavy-duty forecasting from our core engine
romanfll•1h ago