Interactive demos
Everything below runs entirely in your browser, no server. The forecasters are the skaters JavaScript twin, and the streaming-ML pieces are faithful ports of river's, parity-tested against Python.
Use the port yourself
The JavaScript twin is a set of zero-dependency ES modules. Drop it into any page:
<script type="module">
import { LaplaceFeatures, LaplaceTarget, frontedModel }
from "https://ice-skaters.microprediction.org/js/ice-skaters/index.mjs";
const model = frontedModel();
// model.predictOne({temp: 6.5}); model.learnOne({temp: 6.5}, 4.0);
</script>