TobiasPitters commited on
Commit
8c43adf
·
verified ·
1 Parent(s): d683110

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +32 -0
README.md ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: theforecastingcompany/t0-alpha
4
+ tags:
5
+ - time-series
6
+ - forecasting
7
+ - onnx
8
+ - onnxruntime
9
+ - quantized
10
+ - zero-shot
11
+ ---
12
+
13
+ # t0-alpha (int8 ONNX)
14
+
15
+ int8 ONNX export of [theforecastingcompany/t0-alpha](https://huggingface.co/theforecastingcompany/t0-alpha) (Apache-2.0), quantized as: dynamic per-channel QInt8.
16
+
17
+ int8 output verified within 15.2% of forecast spread (mean 3%) of the official `T0Forecaster.predict()`. Unofficial export, not
18
+ affiliated with or endorsed by the model authors.
19
+
20
+ ## Contract
21
+
22
+ | input | dtype | shape | notes |
23
+ |---|---|---|---|
24
+ | `context` | float32 | `['batch', 512]` | NaN = missing; left-pad short series with NaN |
25
+
26
+ Output `quantiles`: float32 `['batch', 64, 5]`. Quantile levels: `[0.1, 0.25, 0.5, 0.75, 0.9]`.
27
+
28
+ One forward pass. Left-pad short series with NaN (the model is missing-aware; padding is exactly equivalent to the natural-length call). Median is level index 2. Univariate graph; for the multivariate `group_ids` variant run `scripts/export_t0_onnx.py --grouped`.
29
+
30
+ See `manifest.json` for the machine-readable contract and the artifact's
31
+ sha256. `LICENSE` is Apache-2.0; when the upstream repo ships a `NOTICE`
32
+ file it is republished here unchanged, as the license requires.