Update autoarima_multi_round.ipynb (#226)

This commit is contained in:
Daniel Ciborowski 2020-10-19 12:54:53 -04:00 коммит произвёл GitHub
Родитель 12e2044946
Коммит 86b421b718
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -512,7 +512,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"The resulting MAPE value is relatively high. As `auto_arima` searches a restricted space of the models, defined by the range of `p` and `q` parameters, we often might not find an optimal model for each time series. In addition, when building a model for a large number of time series, it is often difficult to examine each model individually, which would usually help us improve an ARIMA model. Please refer to the [quick start ARIMA notebook](../00_quick_start/auto_arima_forecasting.ipynb) for a more comprehensive evaluation of a single ARIMA model.\n",
"The resulting MAPE value is relatively high. As `auto_arima` searches a restricted space of the models, defined by the range of `p` and `q` parameters, we often might not find an optimal model for each time series. In addition, when building a model for a large number of time series, it is often difficult to examine each model individually, which would usually help us improve an ARIMA model. Please refer to the [quick start ARIMA notebook](https://github.com/microsoft/forecasting/blob/master/examples/grocery_sales/python/00_quick_start/autoarima_single_round.ipynb) for a more comprehensive evaluation of a single ARIMA model.\n",
"\n",
"Now let's plot a few examples of forecasted results.\n"
]