|
47 | 47 | "\n", |
48 | 48 | "## Prerequisites\n", |
49 | 49 | "\n", |
50 | | - "This tutorial assumes basic familiarity with StatsForecast. For a minimal example visit the [Quick Start](../getting-started/1_Getting_Started_short)" |
| 50 | + "This tutorial assumes basic familiarity with StatsForecast. For a minimal example visit the [Quick Start](../getting-started/getting_started_short.html)" |
51 | 51 | ] |
52 | 52 | }, |
53 | 53 | { |
|
90 | 90 | "source": [ |
91 | 91 | "## Models with Native Prediction Intervals\n", |
92 | 92 | "\n", |
93 | | - "For models that already provide forecast distributions (like AutoARIMA, AutoETS), check [Prediction Intervals](./UncertaintyIntervals). Conformal prediction is particularly useful for models that only produce point forecasts, or when you want distribution-free intervals." |
| 93 | + "For models that already provide forecast distributions (like AutoARIMA, AutoETS), check [Prediction Intervals](./uncertaintyintervals.html). Conformal prediction is particularly useful for models that only produce point forecasts, or when you want distribution-free intervals." |
94 | 94 | ] |
95 | 95 | }, |
96 | 96 | { |
|
117 | 117 | "- **Financial forecasting**: Risk management with calibrated intervals\n", |
118 | 118 | "- **Production models**: Any black-box forecasting model requiring uncertainty quantification\n", |
119 | 119 | "\n", |
120 | | - "[StatsForecast](../../index) implements conformal prediction for all available models, making it easy to add calibrated prediction intervals to any forecasting pipeline." |
| 120 | + "[StatsForecast](../../index.html) implements conformal prediction for all available models, making it easy to add calibrated prediction intervals to any forecasting pipeline." |
121 | 121 | ] |
122 | 122 | }, |
123 | 123 | { |
|
126 | 126 | "source": [ |
127 | 127 | "## Install libraries \n", |
128 | 128 | "\n", |
129 | | - "We assume that you have StatsForecast already installed. If not, check this guide for instructions on [how to install StatsForecast](../getting-started/0_Installation)" |
| 129 | + "We assume that you have StatsForecast already installed. If not, check this guide for instructions on [how to install StatsForecast](../getting-started/installation.html)" |
130 | 130 | ] |
131 | 131 | }, |
132 | 132 | { |
|
321 | 321 | "\n", |
322 | 322 | "StatsForecast makes it simple to add conformal prediction to any forecasting model. We'll demonstrate with models that don't natively provide prediction intervals:\n", |
323 | 323 | "\n", |
324 | | - "- **[SeasonalExponentialSmoothing](../models/SimpleExponentialSmoothing)**: A simple smoothing model\n", |
325 | | - "- **[ADIDA](../models/ADIDA)**: Aggregation method for intermittent demand\n", |
326 | | - "- **[ARIMA](../models/ARIMA)**: Traditional statistical model (to show distribution-free intervals)\n", |
| 324 | + "- **[SeasonalExponentialSmoothing](../../src/core/models.html#SimpleExponentialSmoothing)**: A simple smoothing model\n", |
| 325 | + "- **[ADIDA](../../src/core/models.html#adida)**: Aggregation method for intermittent demand\n", |
| 326 | + "- **[ARIMA](../../src/core/models.html#ARIMA)**: Traditional statistical model (to show distribution-free intervals)\n", |
327 | 327 | "\n", |
328 | 328 | "### Setting Up Conformal Intervals\n", |
329 | 329 | "\n", |
|
858 | 858 | "- Try conformal prediction on your own forecasting problems\n", |
859 | 859 | "- Experiment with different `n_windows` values for optimal calibration\n", |
860 | 860 | "- Compare with native prediction intervals from statistical models\n", |
861 | | - "- Explore [advanced uncertainty quantification methods](./UncertaintyIntervals)\n", |
| 861 | + "- Explore [advanced uncertainty quantification methods](./uncertaintyintervals.html)\n", |
862 | 862 | "\n", |
863 | 863 | "## Acknowledgements\n", |
864 | 864 | "\n", |
|
0 commit comments