skaters 0.11.3 → 0.11.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/README.md +9 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ tracks the Python [`skaters`](https://pypi.org/project/skaters/) package and is
|
|
|
5
5
|
kept numerically identical to it within `1e-6`, enforced by the parity checker on
|
|
6
6
|
every release.
|
|
7
7
|
|
|
8
|
+
## 0.11.4
|
|
9
|
+
|
|
10
|
+
Docs: lead the README with the live in-browser race demo
|
|
11
|
+
(<https://skaters.microprediction.org/demos/race.html>) — the JS port racing
|
|
12
|
+
`arima`, `@bsull/augurs` (ETS and MSTL), and Prophet (Stan compiled to WASM) on
|
|
13
|
+
real FRED series, scored on held-out log-likelihood. No code changes.
|
|
14
|
+
|
|
8
15
|
## 0.11.3
|
|
9
16
|
|
|
10
17
|
Fix: `Dist.logpdf` returned `-Infinity` for finite inputs when the scale had
|
package/README.md
CHANGED
|
@@ -4,6 +4,15 @@
|
|
|
4
4
|
[](https://www.npmjs.com/package/skaters)
|
|
5
5
|
[](https://github.com/microprediction/skaters/blob/main/LICENSE)
|
|
6
6
|
|
|
7
|
+
### ▶ [Watch it race live in your browser](https://skaters.microprediction.org/demos/race.html)
|
|
8
|
+
|
|
9
|
+
The actual JavaScript port racing `arima`, `@bsull/augurs` (ETS and MSTL), and
|
|
10
|
+
Prophet (Stan compiled to WASM) on 150 real FRED series — every method scored on
|
|
11
|
+
held-out log-likelihood, rolling one-step-ahead, no server. `laplace` keeps up
|
|
12
|
+
with a moving average while the refit baselines grind. **[Start here →](https://skaters.microprediction.org/demos/race.html)**
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
7
16
|
Fast univariate **online distributional** time-series forecasting. Zero
|
|
8
17
|
dependencies, runs in Node or the browser. This is the JavaScript port of the
|
|
9
18
|
Python [`skaters`](https://pypi.org/project/skaters/) package, numerically
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skaters",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.4",
|
|
4
4
|
"description": "Fast univariate online distributional time-series forecasting: a zero-dependency JavaScript port of the Python skaters package, numerically identical to 1e-6.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.mjs",
|