"Long term time series prediction"
I have created a model to predict the next value of a time series from three previous values (now real data for now, just trying). It predicts the training data well, but I would like it to go further: it should append the predicted value to the original ones and use it to create another prediction window (predict based on predicted values).
Example:
Example:
How do I do this in RapidMiner if it is possible at all? Are there other options for long term time series prediction?
window | prediction
1 2 3 | 4p
2 3 4p | 5p
3 4p 5p | 6p
4p 5p 6p | 7p
...
Find more posts tagged with
Sort by:
1 - 5 of
51
As Sebastian posted above, it is probably a better idea to use the horizon parameter and train a separate model for each point in the future. The reasons are also stated in Sebastian's post.
If you think that you really need your setup as you described it, probably a bulky construction with loops and some preprocessing operators might work.
If you think that you really need your setup as you described it, probably a bulky construction with loops and some preprocessing operators might work.
I would rather recommend to build a model for each horizon you are planning to predict. With this way, you can evaluate each single model and get a reliable estimation of the accuracy of the model. Otherwise the model errors will just multiply and you won't even notice it.
Greetings,
Sebastian