Chronos : add [how to tune a forecaster model] notebook (#5399)

* add how_to_tune_a_forecaster_model notebook

* modify step1: data preparation

* update based how to train

* modify a bug of summary

* update based on comment

* move to howto

* fix typo

* add file

* update based on comments

* rename the tile
This commit is contained in:
Ruonan Wang 2022-08-30 22:24:49 +08:00 committed by GitHub
parent d4338f3b53
commit 3df26cc9ed
2 changed files with 307 additions and 1 deletions

File diff suppressed because one or more lines are too long

View file

@ -4,13 +4,19 @@ How-to guides are bite-sized, executable examples where users could check when m
Forecasting
-------------------------
* `Train forcaster on single node <how_to_train_forecaster_on_one_node.html>`__
* `Train forecaster on single node <how_to_train_forecaster_on_one_node.html>`__
In this guidance, **we demonstrate how to train forecasters on one node**. In the training process, forecaster will learn the pattern (like the period, scale...) in history data. Although Chronos supports training on a cluster, it's highly recommeneded to try one node first before allocating a cluster to make life easier.
* `Tune forecaster on single node <how_to_tune_forecaster_model.html>`__
In this guidance, we demonstrate **how to tune forecaster on single node**. In tuning process, forecaster will find the best hyperparameter combination among user-defined search space, which is a common process if users pursue a forecaster with higher accuracy.
.. toctree::
:maxdepth: 1
:hidden:
how_to_train_forecaster_on_one_node
how_to_tune_forecaster_model