You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: allow for probabilistic regression ensemble model by passing num_samples to the ensemble() method
* fix: propagating the new argument to the baseline
* feat: improved the definition of probabilistic EnsembleModel
* doc: updating the docstring and quickstart to include information about probabilistic ensembles
* doc: improved docstring for regression_model argument of RegressionEnsembleModel
* feat: adding unittests
* fix: updated EnsembleModel unittest that were covering RegressionEnsembleModel
* feat: added 2 new parameters to control training of regression model with probabilistic forecasting models, NaiveEnsembleModel also properly ensemble such probabilistic models (takes into account n_samples).
* feat: simplify the ensembling method of NaiveEnsemble
* doc: changed phrasing of the note about how to make EnsembleModel probabilistic
* feat: improved the tests for stochastic naive ensemble
* doc: added comments in regression ensemble tests, fixed a small typo in ensemble tests
* fix: bug in samples reduction prior to regression model training
* feat: improving the tests for regression ensemble model
* fix: simplifiying tests synthax
* Update CHANGELOG.md
* fix: removed useless if else
* feat: possible to not reduce the prediction for RegressionEnsembleModel, updated the tests accordingly
* Apply suggestions from code review
Co-authored-by: Dennis Bader <[email protected]>
* fix: adressing reviewer comments
* fix: ensemble with probabilistic forecasting models but deterministic regression cannot generate probabilistic forecast
* fix: moving predict back to base ensemble class, removed horizontal stacking
* Apply suggestions from code review
Co-authored-by: Dennis Bader <[email protected]>
* fix: addressing reviewer comments
* fix: mixed (proba and deter) forecasting models sampling for regressor training
---------
Co-authored-by: Dennis Bader <[email protected]>
Copy file name to clipboardexpand all lines: CHANGELOG.md
+1
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,7 @@ but cannot always guarantee backwards compatibility. Changes that may **break co
17
17
- Improvements to `EnsembleModel`:
18
18
- Model creation parameter `forecasting_models` now supports a mix of `LocalForecastingModel` and `GlobalForecastingModel` (single `TimeSeries` training/inference only, due to the local models). [#1745](https://github.com/unit8co/darts/pull/1745) by [Antoine Madrona](https://github.com/madtoinou).
19
19
- Future and past covariates can now be used even if `forecasting_models` have different covariates support. The covariates passed to `fit()`/`predict()` are used only by models that support it. [#1745](https://github.com/unit8co/darts/pull/1745) by [Antoine Madrona](https://github.com/madtoinou).
20
+
-`RegressionEnsembleModel` and `NaiveEnsembleModel` can generate probabilistic forecasts, probabilistics `forecasting_models` can be sampled to train the `regression_model`, updated the documentation (stacking technique). [#1692](https://github.com/unit8co/darts/pull/#1692) by [Antoine Madrona](https://github.com/madtoinou).
20
21
- Improvements to `ShapExplainer`:
21
22
- Added static covariates support to `ShapeExplainer`. [#1803](https://github.com/unit8co/darts/pull/#1803) by [Anne de Vries](https://github.com/anne-devries) and [Dennis Bader](https://github.com/dennisbader).
0 commit comments