Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
AEP Template
Contributors: @TonyBagnall, Leo, Adam, Alex
Overview
We have recently removed the whole legacy forecasting module. We wish to start again
with a more tightly focussed goal in forecasting. Our priority is to develop a
simple model for implementing forecasters from stats, machine learning and deep
learning in a consistent way. We want to start simple and build things up, so we
start with the following assumptions.
recursive models: forecasters trained on a given horizon are meant to forecast on
that horizon
Problem Statement and Use Cases
the problem is to provide a simple interface for forecasting. This involves fitting
a model on some training data, then making forecasts.
There are three classes of algorithm for forecasting: statistical, machine learning
and deep learning. The main difference is that machine learning and deep learning
algorithms are primarily a reduction to regression through a sliding window.
Some notes on other implementations here
https://hackmd.io/@aeon-toolkit/rJZFioiJJe
more details in the PR