-
📖 Documentation improvementpls how to find in documentation how CatBoostMultiSegmentModel is better than CatBoostPerSegmentModel and what algorithm used for CatBoostMultiSegmentModel Additional contextNo response |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
As for The core ideas for understanding the
During forecast
For example, we have T timestamps in history, N segments and H horizon. The resulting table for learning catboost will have T * N rows (this is lower if we remove rows with missing values). The resulting table for predicting will have H * N rows. We use a regular CatBoostRegressor, but for each point in the forecasting horizon there is a separate row in a table with its own features. To determine which approach is better per-segment or multi-segment you should use backtest and look at the metrics.
|
Beta Was this translation helpful? Give feedback.
-
As for hierarchical time series reconciliation, you are using a very old version of documentation. I advise to look at the documentation for the version you are currently using. Documentation for the latest available version is here. I think that good enough explanation about current implemented reconciliation methods is in the tutorial about hierarchical time series. |
Beta Was this translation helpful? Give feedback.
As for
CatBoostMultiSegmentModel
we already discussed it in a telegram chat. I'll repeat core messages for someone who could have the same question in the future.The core ideas for understanding the
CatBoostPerSegmentModel
algorithm is contained hereDuring fit
During forecast
For example, we have T timesta…