Options for ensembling forecasters
See original GitHub issueIs your feature request related to a problem? Please describe.
Currently ensemble forecasting model only supports mean reduction as outlined here. Can we add more options similar to this.
Describe the solution you’d like
Provide options to combine the forecasts using
- Median
- Min/Max
- Weighted (currently defaults to
mean
which is equal weighting, but user could provide custom weighting for each model)
Issue Analytics
- State:
- Created 3 years ago
- Reactions:2
- Comments:12 (4 by maintainers)
Top Results From Across the Web
Ensemble forecasting - Wikipedia
Ensemble forecasting is a method used in or within numerical weather prediction. Instead of making a single forecast of the most likely weather,...
Read more >Ensemble Forecasting | METEO 3: Introductory Meteorology
Having access to ensemble forecasts from computer models essentially gives forecasters many looks at different possibilities for an upcoming weather situation.
Read more >Ensemble Forecasts: The Future of Modeling Pandemics?
Ensemble forecasting is a popular choice to improve predictions. ... Ensembles may be our best option to predict future disease outbreaks.
Read more >Ensemble Forecasting - an overview | ScienceDirect Topics
Ensemble forecasting involves generating a collection of forecasts based on varying initial conditions, model parameters, and physics. From: Oil Spill Science ...
Read more >Ensemble learning for time series forecasting in R
In this post, I showed you how to use basic ensemble learning methods to improve forecasting accuracy. I used classical Bagging in combination ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Remembering that we have already some architecture for weighted forecasting ensembles (see PR #333), I was wondering whether it would make sense to involve @magittan in the discussion to see how we integrate this with the current ensembling sub-module?
I think it would make a lot of sense to come up with a joint/consolidated design for forecasting ensembles that’s flexible and composable - given that there already is one for weighted ensembles and on-line ensembles.
Yeah, I personally was more interested in the median (instead of mean) for the same reason. The only reason I added min/max there was due to the compatibility with hcrystalball. I would be OK if you decide not to include min/max.
Adding option for quantiles would be good in lieu of min/max.