LTMeyer commited on
Commit
b7c130e
·
unverified ·
1 Parent(s): 01a3e2f

doc: restore emojis section headers

Browse files
Files changed (1) hide show
  1. README.md +7 -7
README.md CHANGED
@@ -75,7 +75,7 @@ Known-future covariates can include calendar features, planned events, holidays,
75
 
76
  Forecasts should be treated as probabilistic estimates, not guarantees.
77
 
78
- ## Forecasting With Covariates
79
 
80
  `t0` leverages covariate information, in the past and future when available, to improve its forecast.
81
 
@@ -105,7 +105,7 @@ pip install "tfc-t0[evaluation]"
105
  pip install "tfc-t0[plot]"
106
  ```
107
 
108
- ## Quickstart
109
 
110
  The simplest path is a univariate forecast through `predict`:
111
 
@@ -161,7 +161,7 @@ out.median # (2, 64)
161
  - Longer horizons use autoregressive rollout.
162
  - Returned forecasts are finite `float32` tensors on the model's device.
163
 
164
- ## Architecture
165
 
166
  `t0` is a decoder-style patch transformer.
167
 
@@ -194,13 +194,13 @@ At inference, target and historical variates are normalized with causal running
194
 
195
  Users should also evaluate `t0-alpha` on their own historical backtests. Useful checks include quantile loss, CRPS, MASE, empirical quantile coverage, calibration, and breakdowns by frequency, horizon, domain, history length, and covariate availability.
196
 
197
- ## Public API
198
 
199
  - `T0Forecaster`: The actual PyTorch module class.
200
  - `Forecast`: return object encapsulating forecasted quantiles.
201
  - `T0Config`: dataclass to configure the model.
202
 
203
- ## Lineage and Attributions
204
 
205
  `t0` builds on ideas from open-source forecasting models. We gratefully acknowledge:
206
 
@@ -213,7 +213,7 @@ Code-level attributions are listed in [`NOTICE`](NOTICE), all under Apache-2.0.
213
 
214
  Training compute and carbon emissions are not currently reported.
215
 
216
- ## Citation
217
 
218
  ```bibtex
219
  @misc{tfc-t0,
@@ -224,7 +224,7 @@ Training compute and carbon emissions are not currently reported.
224
  }
225
  ```
226
 
227
- ## License
228
 
229
  Apache-2.0. See [`LICENSE`](LICENSE) and [`NOTICE`](NOTICE).
230
 
 
75
 
76
  Forecasts should be treated as probabilistic estimates, not guarantees.
77
 
78
+ ## 📈 Forecasting With Covariates
79
 
80
  `t0` leverages covariate information, in the past and future when available, to improve its forecast.
81
 
 
105
  pip install "tfc-t0[plot]"
106
  ```
107
 
108
+ ## 🚀 Quickstart
109
 
110
  The simplest path is a univariate forecast through `predict`:
111
 
 
161
  - Longer horizons use autoregressive rollout.
162
  - Returned forecasts are finite `float32` tensors on the model's device.
163
 
164
+ ## 🏗️ Architecture
165
 
166
  `t0` is a decoder-style patch transformer.
167
 
 
194
 
195
  Users should also evaluate `t0-alpha` on their own historical backtests. Useful checks include quantile loss, CRPS, MASE, empirical quantile coverage, calibration, and breakdowns by frequency, horizon, domain, history length, and covariate availability.
196
 
197
+ ## 🧰 Public API
198
 
199
  - `T0Forecaster`: The actual PyTorch module class.
200
  - `Forecast`: return object encapsulating forecasted quantiles.
201
  - `T0Config`: dataclass to configure the model.
202
 
203
+ ## 🧬 Lineage and Attributions
204
 
205
  `t0` builds on ideas from open-source forecasting models. We gratefully acknowledge:
206
 
 
213
 
214
  Training compute and carbon emissions are not currently reported.
215
 
216
+ ## 📚 Citation
217
 
218
  ```bibtex
219
  @misc{tfc-t0,
 
224
  }
225
  ```
226
 
227
+ ## ⚖️ License
228
 
229
  Apache-2.0. See [`LICENSE`](LICENSE) and [`NOTICE`](NOTICE).
230