litecreator commited on
Commit
ac67700
·
verified ·
1 Parent(s): 7abaaf5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +373 -5
README.md CHANGED
@@ -1,5 +1,373 @@
1
- ---
2
- license: other
3
- license_name: dosl-iie-1.0
4
- license_link: LICENSE
5
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # AionFM
2
+
3
+ ### A Hybrid Continuous-Discrete Temporal Foundation Model for Probabilistic, Regime-Aware Time-Series Forecasting
4
+
5
+ ---
6
+
7
+ ## Overview
8
+
9
+ **AionFM** is a proposed time-series foundation model built around a central thesis: effective forecasting requires both **numerical precision** and **behavioral abstraction**. Rather than choosing between continuous value representations (which preserve accuracy but lack structural reasoning) and discrete tokenization (which enables transfer but loses precision), AionFM operates both simultaneously through a **dual-stream decoder-only architecture**.
10
+
11
+ The model processes temporal data through two synchronized representational streams:
12
+
13
+ - **Continuous Value Patch Stream** — segments normalized observations into subseries-level patches projected into dense embeddings, preserving full numerical resolution throughout the forecasting pipeline.
14
+ - **Discrete Regime Token Stream** — computes behavioral feature vectors from local temporal summaries and quantizes them into a learned vocabulary of residual regime tokens encoding trend, volatility, seasonality, discontinuities, missingness, and cross-variable structural states.
15
+
16
+ AionFM simultaneously serves as a point forecaster, probabilistic forecaster, scenario generator, regime detector, missing-data imputer, synthetic trajectory generator, and domain-adaptable forecasting engine — all within a single set of shared parameters.
17
+
18
+ ---
19
+
20
+ ## Key Contribution: The Residual Temporal Language
21
+
22
+ The defining innovation of AionFM is the **Residual Temporal Language** — a domain-independent behavioral vocabulary learned from normalized residuals rather than raw observations.
23
+
24
+ Instead of tokenizing raw values (which are inherently domain-specific), AionFM:
25
+
26
+ 1. Estimates a **local baseline** `b_t = f_baseline(x_{1:t})` capturing level, trend, and dominant seasonality
27
+ 2. Computes a **normalized residual** `e_t = (x_t - b_t) / (s_t + ε)` that is scale-free and domain-independent
28
+ 3. Summarizes residuals into **behavioral descriptors** (direction, curvature, volatility, shock magnitude, recovery rate, seasonality phase, cross-variable divergence, etc.)
29
+ 4. Maps descriptors to **discrete regime tokens** via learned vector quantization
30
+
31
+ A regime token does not encode *"the value is 17.2"* — it encodes behavioral states such as *"stable upward drift,"* *"high-volatility expansion,"* *"negative shock with partial recovery,"* or *"mean-reverting residual compression."*
32
+
33
+ This abstraction enables cross-domain transfer because concepts like "volatility expansion" or "shock recovery" recur across finance, energy, retail, traffic, climate, and operations data — even when raw magnitudes differ by orders of magnitude.
34
+
35
+ ### Behavioral Pattern Vocabulary
36
+
37
+ | Pattern | Token Semantics | Description |
38
+ |---------|----------------|-------------|
39
+ | **Drift** | Stable directional movement | Sustained positive/negative slope with low curvature |
40
+ | **Reversal** | Direction change | Sign change in local slope with high curvature |
41
+ | **Shock** | Abrupt deviation | Large standardized residual exceeding local volatility band |
42
+ | **Recovery** | Return toward baseline | Post-shock trajectory with exponential/linear decay |
43
+ | **Compression** | Volatility contraction | Declining local variance and narrowing range |
44
+ | **Expansion** | Volatility increase | Rising local variance and widening range |
45
+ | **Saturation** | Flattening near bound | Declining slope near a local max/min |
46
+ | **Seasonality Peak/Trough** | Cyclic extremum | Residual phase aligned with seasonal cycle at extremum |
47
+ | **Regime Break** | Structural discontinuity | Persistent change in statistical properties |
48
+ | **Coupling** | Cross-variable alignment | Increasing correlation among previously independent variables |
49
+ | **Decoupling** | Cross-variable divergence | Decreasing correlation among previously co-moving variables |
50
+ | **Missing Burst** | Observation gap cluster | Concentrated missing values (sensor failure, outage) |
51
+ | **Anomalous Spike** | Isolated extreme value | Single-observation deviation without sustained regime change |
52
+
53
+ ---
54
+
55
+ ## Architecture
56
+
57
+ ```
58
+ ┌──────────────────────────────────────────────────────────────────┐
59
+ │ INPUT TIME SERIES DATA │
60
+ │ (targets, covariates, metadata, calendar, missingness masks) │
61
+ └────────────────────────────┬─────────────────────────────────────┘
62
+
63
+
64
+ ┌──────────────────────────────────────────────────────────────────┐
65
+ │ [1] INPUT NORMALIZATION & PREPARATION │
66
+ │ Reversible scaling, frequency detection, calendar encoding, │
67
+ │ missingness masking, entity/domain descriptors │
68
+ └────────────────────────────┬─────────────────────────────────────┘
69
+
70
+ ┌────────────┴────────────┐
71
+ │ │
72
+ ▼ ▼
73
+ ┌────────────────────────┐ ┌────────────────────────────┐
74
+ │ [2] CONTINUOUS VALUE │ │ [3] DISCRETE REGIME │
75
+ │ PATCH ENCODER │ │ TOKENIZER │
76
+ │ Patch segmentation, │ │ Behavioral features, │
77
+ │ linear projection, │ │ vector quantization, │
78
+ │ numerical embedding │ │ macro/meso/micro tokens │
79
+ └──────────┬─────────────┘ └──────────────┬─────────────┘
80
+ │ │
81
+ └───────────┬───────────────────┘
82
+ │ Gated Fusion
83
+
84
+ ┌──────────────────────────────────────────────────────────────────┐
85
+ │ [4] DUAL-STREAM CAUSAL TEMPORAL BACKBONE │
86
+ │ Decoder-only Transformer with causal masking │
87
+ │ Patch attention + cross-variable attention + memory attention │
88
+ │ Temporal position encoding + frequency-aware positions │
89
+ │ Compressed long-context memory │
90
+ └────────────────────────────┬─────────────────────────────────────┘
91
+
92
+
93
+ ┌──────────────────────────────────────────────────────────────────┐
94
+ │ [5] PROBABILISTIC FORECAST & SCENARIO DECODER │
95
+ │ Point forecast │ Quantile │ Distribution │ Regime forecast │
96
+ │ Scenario generation │ Imputation │
97
+ │ Inverse normalization & constraint projection │
98
+ └──────────────────────────────────────────────────────────────────┘
99
+ ```
100
+
101
+ ### Subsystem Summary
102
+
103
+ | # | Subsystem | Role |
104
+ |---|-----------|------|
105
+ | 1 | **Input Normalization** | Reversible scaling (z-score, MAD, Box-Cox, return, seasonal residual), frequency detection, calendar encoding, missingness masking |
106
+ | 2 | **Continuous Value Patch Encoder** | Segments sequences into patches of length P with stride S; projects via `h^v_k = W_v · p_k + b_v`; preserves full numerical resolution |
107
+ | 3 | **Discrete Regime Tokenizer** | Computes behavioral feature vectors; maps to discrete codes via vector quantization; hierarchical macro/meso/micro token structure |
108
+ | 4 | **Dual-Stream Causal Backbone** | Decoder-only Transformer with gated fusion (`α_k, β_k, γ_k`); supports patch, cross-variable, regime-token, memory, and covariate-aware attention |
109
+ | 5 | **Probabilistic Forecast & Scenario Decoder** | Six output heads: point, quantile, distribution, regime, scenario, imputation |
110
+
111
+ ### Hierarchical Regime Tokens
112
+
113
+ | Level | Scope | Example States | Change Frequency |
114
+ |-------|-------|---------------|-----------------|
115
+ | **Macro** | Multi-patch window | "upward trend," "stationary oscillation," "structural break" | Infrequent |
116
+ | **Meso** | Single/few-patch | "volatility expansion," "mean-reverting residual," "post-shock recovery" | Moderate |
117
+ | **Micro** | Within single patch | "positive residual spike," "residual compression," "noise-dominated" | Frequent |
118
+
119
+ ### Compressed Temporal Memory
120
+
121
+ | Tier | Scope | Resolution | Purpose |
122
+ |------|-------|-----------|---------|
123
+ | **Active Window** | Recent W patches | Full attention | Maximum-resolution processing |
124
+ | **Recent Memory** | Medium-term past | Learned compression | Key statistical properties preserved |
125
+ | **Long-Term Memory** | Distant past | High compression | Historical baselines, prior regimes, seasonal patterns |
126
+
127
+ ---
128
+
129
+ ## Training Framework
130
+
131
+ ### 7-Component Composite Objective
132
+
133
+ ```
134
+ L_total = λ₁·L_patch + λ₂·L_mask + λ₃·L_regime + λ₄·L_quantile + λ₅·L_rollout + λ₆·L_contrastive + λ₇·L_calibration
135
+ ```
136
+
137
+ | # | Loss Component | Purpose | Key Reference |
138
+ |---|---------------|---------|---------------|
139
+ | 1 | **Next-Patch Prediction** | Autoregressive temporal prediction; grounds model in numerical accuracy | — |
140
+ | 2 | **Masked Temporal Reconstruction** | Robustness, imputation capability, noise tolerance (15–40% masking) | — |
141
+ | 3 | **Regime-Token Likelihood** | Trains residual temporal language via cross-entropy over regime vocabulary | — |
142
+ | 4 | **Quantile Loss** | Calibrated uncertainty at τ ∈ {0.01, 0.05, 0.10, 0.25, 0.50, 0.75, 0.90, 0.95, 0.99} | Koenker & Bassett, 1978 |
143
+ | 5 | **Rollout Consistency** | Multi-step coherence; reduces compounding error in long-horizon forecasts | — |
144
+ | 6 | **Cross-Scale Contrastive Alignment** | Connects local movements to broader regime context; separates noise from structure | van den Oord et al., 2018 |
145
+ | 7 | **Calibration Loss** | Ensures empirical interval coverage matches nominal levels | Gneiting & Raftery, 2007 |
146
+
147
+ ### Pretraining Data
148
+
149
+ **Real data** spanning: retail sales, energy demand, web traffic, industrial sensors, weather/climate, transportation, healthcare operations, financial markets, economic indicators, manufacturing telemetry, and supply-chain flows.
150
+
151
+ **Synthetic data** from a configurable trajectory generator:
152
+
153
+ ```
154
+ x_t = T_t + S_t + C_t + E_t + R_t + ε_t
155
+ ─── ─── ─── ─── ─── ───
156
+ trend seas cycle event regime noise
157
+ ```
158
+
159
+ Simulates: piecewise/exponential/logistic trends, multiple seasonalities, random shocks, step changes, mean reversion, heteroskedasticity, autoregressive noise, sparse demand, irregular sampling, sensor drift, and correlated multivariate systems — with latent regime labels retained for direct supervision.
160
+
161
+ ---
162
+
163
+ ## Probabilistic Forecasting & Scenario Generation
164
+
165
+ ### Six Output Heads
166
+
167
+ | Head | Output | Use Case |
168
+ |------|--------|----------|
169
+ | **Point Forecast** | Deterministic mean/median | Planning, benchmarking |
170
+ | **Quantile Forecast** | Calibrated quantiles at multiple levels | Prediction intervals, safety stock |
171
+ | **Distribution** | Parametric distribution parameters (Gaussian, Student-t, negative binomial, mixture, zero-inflated) | Likelihood evaluation, sampling |
172
+ | **Regime Forecast** | Future behavioral token sequence | Interpretable trajectory characterization |
173
+ | **Scenario Generation** | Multiple coherent future trajectories | Risk simulation, stress testing, capacity planning |
174
+ | **Imputation** | Reconstructed missing historical values | Data quality, gap-filling |
175
+
176
+ ### Two-Stage Scenario Generation
177
+
178
+ 1. **Stage 1 — Regime Path Sampling:** Sample plausible future regime token sequences from the conditional distribution (e.g., "continued growth," "shock at step 3 with recovery," "volatility expansion with reversal")
179
+ 2. **Stage 2 — Value Decoding:** Generate numerical forecasts conditioned on each sampled regime path
180
+
181
+ Scenario types: `conservative` · `median` · `optimistic` · `tail-risk` · `stress` · `regime-specific`
182
+
183
+ ### Example Output Schema
184
+
185
+ ```json
186
+ {
187
+ "model_version": "AionFM-M v1.0",
188
+ "forecast_origin": "2026-05-01T00:00:00Z",
189
+ "forecast_horizon": 14,
190
+ "frequency": "daily",
191
+ "target": "store_42_sku_1087_units",
192
+ "point_forecast": [142, 138, 155, 161, 170, 168, 152, 145, 140, 158, 164, 173, 171, 155],
193
+ "quantiles": {
194
+ "q05": [112, 107, 119, 124, 131, 128, 117, 111, 107, 121, 126, 133, 131, 119],
195
+ "q50": [142, 138, 155, 161, 170, 168, 152, 145, 140, 158, 164, 173, 171, 155],
196
+ "q95": [176, 172, 194, 202, 213, 210, 190, 181, 175, 198, 206, 217, 214, 194]
197
+ },
198
+ "scenario_paths": {
199
+ "continued_growth": [145, 142, 160, 168, 178, 176, 160, 153, 148, 166, 172, 182, 180, 164],
200
+ "shock_recovery": [142, 138, 118, 105, 120, 135, 148, 145, 140, 158, 164, 173, 171, 155],
201
+ "seasonal_decline": [142, 135, 128, 122, 118, 115, 112, 110, 108, 112, 118, 125, 130, 135]
202
+ },
203
+ "regime_probabilities": {
204
+ "stable_growth": 0.42,
205
+ "seasonal_peak": 0.27,
206
+ "shock_recovery": 0.18,
207
+ "reversal": 0.13
208
+ },
209
+ "explanation": {
210
+ "current_regime": "stable_upward_drift with seasonal_approach",
211
+ "uncertainty_driver": "seasonal_phase_transition at horizon 7-9",
212
+ "change_point_probability": 0.23
213
+ }
214
+ }
215
+ ```
216
+
217
+ ---
218
+
219
+ ## Model Family
220
+
221
+ | Config | AionFM-S (Edge) | AionFM-M (Enterprise) | AionFM-L (High-Accuracy) | AionFM-X (Research) |
222
+ |--------|:---:|:---:|:---:|:---:|
223
+ | **Patch length P** | 16 | 32 | 64 | 64 |
224
+ | **Max context (patches)** | 128 | 512 | 1,024 | 2,048 |
225
+ | **Max forecast horizon** | 96 | 384 | 720 | 1,440 |
226
+ | **Max variables** | 16 | 128 | 512 | 2,048 |
227
+ | **Regime token vocab** | 256 | 1,024 | 4,096 | 8,192 |
228
+ | **Regime token levels** | 2 (macro/meso) | 3 (macro/meso/micro) | 3 | 3 |
229
+ | **Transformer depth** | 6 | 12 | 24 | 48 |
230
+ | **Attention width (d_model)** | 256 | 512 | 768 | 1,024 |
231
+ | **Memory compression** | 4:1 | 8:1 | 16:1 | 32:1 |
232
+ | **Quantile levels** | 5 | 9 | 9 | 19 |
233
+ | **Scenario count** | 10 | 50 | 100 | 500 |
234
+ | **Adapter size** | 32 | 64 | 128 | 256 |
235
+ | **Target use case** | Edge, mobile, low-latency | General enterprise | High-accuracy batch | Research, high-value |
236
+
237
+ ---
238
+
239
+ ## Domain Adaptation
240
+
241
+ AionFM supports four adaptation modes:
242
+
243
+ | Mode | Data Required | What Updates | When to Use |
244
+ |------|:---:|:---:|-------------|
245
+ | **Zero-shot** | None | Nothing | Cold starts, rapid deployment, limited data |
246
+ | **Few-shot calibration** | 50–500 obs | Scale, quantile coverage, seasonal phase, covariate effects | Limited domain data, fast adaptation |
247
+ | **Adapter tuning** | Domain dataset | Lightweight adapter modules (core frozen) | Domain-specific frequency, covariates, distributions |
248
+ | **Full fine-tuning** | Large domain dataset | All parameters | High-value, specialized applications |
249
+
250
+ ### Covariate Support
251
+
252
+ - **Known future:** calendar, promotions, maintenance windows, holidays, price schedules, weather forecasts
253
+ - **Historical:** actual weather, prices, traffic, inventory, sensor readings, economic indicators
254
+ - **Static metadata:** store type, region, product category, sensor location, machine type
255
+ - **Latent metadata:** inferred entity descriptors from historical behavior
256
+
257
+ ---
258
+
259
+ ## Application Domains
260
+
261
+ | Domain | Key Inputs | Key Outputs |
262
+ |--------|-----------|-------------|
263
+ | **Energy** | Load history, temperature, calendar, weather forecasts, regional metadata | Peak demand intervals, extreme-load scenarios, regime detection, capacity-risk estimates |
264
+ | **Retail** | SKU sales, promotions, price changes, holidays, inventory constraints | Demand forecasts, safety stock recommendations, promotion uplift scenarios, hierarchical reconciliation |
265
+ | **Industrial** | Multi-sensor streams (temp, pressure, vibration), machine metadata | Predictive maintenance, drift detection, failure-regime probabilities, remaining useful life |
266
+ | **Healthcare** | ED arrivals, bed occupancy, procedure volume, staffing, calendar | Demand intervals, surge scenarios, capacity-risk flags, calendar-adjusted projections |
267
+ | **Logistics** | Shipment volume, congestion, delivery times, fleet utilization | Volume forecasts, delay-risk scenarios, disruption-sensitive capacity plans |
268
+ | **Financial** | Returns, volume, volatility, liquidity, cross-asset dependencies | Risk scenarios, volatility forecasts, regime probabilities, tail-risk estimates |
269
+
270
+ ---
271
+
272
+ ## Advanced Capabilities
273
+
274
+ - **Constraint-Aware Forecasting** — projects raw forecasts into valid space respecting nonnegativity, capacity limits, conservation laws, market hours, monotonic cumulative quantities
275
+ - **Hierarchical Forecasting** — forecasts at multiple aggregation levels (Company → Region → Store → Category → SKU) with reconciliation consistency (Hyndman et al., 2011)
276
+ - **Retrieval-Augmented Temporal Forecasting** — retrieves historical windows with similar behavioral signatures to condition forecasts; improves rare-event forecasting, cold starts, and explainability
277
+ - **Multivariate & Cross-Series Modeling** — cross-variable attention, correlation-regime tokens, graph-aware adapters, metadata-conditioned attention; retrieval-based context selection for very large panels
278
+
279
+ ---
280
+
281
+ ## Evaluation Framework
282
+
283
+ ### Metrics
284
+
285
+ | Category | Metrics |
286
+ |----------|---------|
287
+ | **Point accuracy** | MAE, RMSE, MAPE, sMAPE, MASE, WAPE |
288
+ | **Probabilistic** | Pinball loss, CRPS, prediction interval coverage & width, calibration error, weighted quantile loss |
289
+ | **Scenario quality** | Path coherence, distributional similarity, tail-event coverage, regime transition realism, multivariate dependency preservation |
290
+ | **Robustness** | Missing data degradation, corrupted observations, outliers, regime shifts, covariate dropout, scale shifts |
291
+ | **Transfer** | Zero-shot accuracy, few-shot adaptation speed, domain/frequency transfer, new-entity cold start |
292
+ | **Interpretability** | Regime-token stability, change-point alignment, regime explanation consistency, component attribution fidelity |
293
+
294
+ ### Benchmarking Protocol
295
+
296
+ Five evaluation settings: **zero-shot** (unseen datasets) · **fine-tuned** (domain-specific) · **few-shot** (cold-start) · **long-horizon** (rollout stability) · **stress** (shocks, missing data, distribution shifts, rare regimes)
297
+
298
+ ---
299
+
300
+ ## Deployment Modes
301
+
302
+ | Mode | Latency | Use Case |
303
+ |------|---------|----------|
304
+ | **Batch forecasting** | Minutes–hours | Daily/weekly/monthly planning, demand forecasting, capacity provisioning |
305
+ | **Real-time inference** | Sub-second (S) to sub-5s (M) | Monitoring, sensor anomaly detection, intraday demand, traffic |
306
+ | **Interactive scenario engine** | Seconds | Planning teams modify assumptions and receive updated forecasts in real time |
307
+ | **Embedded API** | Per-request | Integration into enterprise systems, dashboards, optimization engines |
308
+
309
+ ---
310
+
311
+ ## Limitations
312
+
313
+ - Forecast quality depends on data quality; garbage in, garbage out
314
+ - Extreme regime shifts (geopolitical events, unprecedented policy changes) remain difficult for any historical model
315
+ - Long-horizon forecasts may become diffuse as uncertainty compounds
316
+ - Interpretability tokens are learned approximations, not ground-truth causal states
317
+ - Scenario generation requires careful validation — statistical plausibility ≠ operational plausibility
318
+ - Domain constraints must be explicitly encoded for high-stakes applications
319
+ - Calibration must be monitored post-deployment for distributional drift
320
+ - **This is a conceptual specification — empirical validation across diverse benchmarks is needed**
321
+
322
+ ---
323
+
324
+ ## Future Research Directions
325
+
326
+ 1. **Better Regime Vocabularies** — hierarchical vector quantization, human-interpretable token labeling, domain-specific token adapters, causal regime discovery
327
+ 2. **Causal Forecasting** — separating correlation from intervention; what-if questions (price changes, capacity reductions, promotion delays)
328
+ 3. **Agentic Planning Integration** — AionFM as a component in planning systems that generate forecasts, simulate actions, compare scenarios, and optimize decisions
329
+ 4. **Physics-Aware Constraints** — incorporating physical equations and conservation laws for industrial, climate, and engineering systems
330
+ 5. **Multimodal Temporal Modeling** — integrating textual event descriptions, news, maintenance logs, images, geospatial data, and graph structures alongside the time-series backbone
331
+
332
+ ---
333
+
334
+ ## References
335
+
336
+ [1] Adams, R.P. and MacKay, D.J.C. (2007). *Bayesian Online Changepoint Detection.* arXiv preprint arXiv:0710.3742.
337
+
338
+ [2] Box, G.E.P., Jenkins, G.M., Reinsel, G.C., and Ljung, G.M. (2015). *Time Series Analysis: Forecasting and Control,* 5th edition. John Wiley and Sons.
339
+
340
+ [3] Durbin, J. and Koopman, S.J. (2012). *Time Series Analysis by State Space Methods,* 2nd edition. Oxford University Press.
341
+
342
+ [4] Gneiting, T. and Raftery, A.E. (2007). Strictly Proper Scoring Rules, Prediction, and Estimation. *Journal of the American Statistical Association,* 102(477), 359–378.
343
+
344
+ [5] Hamilton, J.D. (1989). A New Approach to the Economic Analysis of Nonstationary Time Series and the Business Cycle. *Econometrica,* 57(2), 357–384.
345
+
346
+ [6] Hochreiter, S. and Schmidhuber, J. (1997). Long Short-Term Memory. *Neural Computation,* 9(8), 1735–1780.
347
+
348
+ [7] Hyndman, R.J. and Athanasopoulos, G. (2021). *Forecasting: Principles and Practice,* 3rd edition. OTexts, Melbourne, Australia.
349
+
350
+ [8] Hyndman, R.J., Ahmed, R.A., Athanasopoulos, G., and Shang, H.L. (2011). Optimal Combination Forecasts for Hierarchical Time Series. *Computational Statistics and Data Analysis,* 55(9), 2579–2589.
351
+
352
+ [9] Koenker, R. and Bassett, G. (1978). Regression Quantiles. *Econometrica,* 46(1), 33–50.
353
+
354
+ [10] van den Oord, A., Vinyals, O., and Kavukcuoglu, K. (2017). Neural Discrete Representation Learning. *Advances in Neural Information Processing Systems,* 30, 6306–6315.
355
+
356
+ [11] van den Oord, A., Li, Y., and Vinyals, O. (2018). Representation Learning with Contrastive Predictive Coding. arXiv preprint arXiv:1807.03748.
357
+
358
+ [12] Vaswani, A., Shazeer, N., Parmar, N., Uszkoreit, J., Jones, L., Gomez, A.N., Kaiser, L., and Polosukhin, I. (2017). Attention Is All You Need. *Advances in Neural Information Processing Systems,* 30, 5998–6008.
359
+
360
+ ---
361
+
362
+ ## License
363
+
364
+ This is an open technical specification released for community development. No empirical results are reported. The architecture and methods described are proposed designs intended to guide implementation and invite community contribution.
365
+
366
+ ---
367
+
368
+
369
+ ---
370
+ license: other
371
+ license_name: dosl-iie-1.0
372
+ license_link: LICENSE
373
+ ---