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
Fix/RegressionEnsemble with single model regressor and coef access in LinearRegressionModel (#2205)
* fix: overwrite the self.model attribute with the model container
* fix: prevent creation of RegressionEnsemble with a regression model created with multi_models=False
* update changelog
* Update darts/models/forecasting/regression_ensemble_model.py
Co-authored-by: Dennis Bader <[email protected]>
* rephrasing changelog
* fix: enforce multi_models=True when ocl=1
---------
Co-authored-by: Dennis Bader <[email protected]>
Copy file name to clipboardexpand all lines: CHANGELOG.md
+2
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,8 @@ but cannot always guarantee backwards compatibility. Changes that may **break co
18
18
- Added option to exclude some `group_cols` from being added as static covariates when using `TimeSeries.from_group_dataframe()` with parameter `drop_group_cols`.
19
19
20
20
**Fixed**
21
+
- Fixed a bug in probabilistic `LinearRegressionModel.fit()`, where the `model` attribute was not pointing to all underlying estimators. [#2205](https://github.com/unit8co/darts/pull/2205) by [Antoine Madrona](https://github.com/madtoinou).
22
+
- Raise an error in `RegressionEsembleModel` when the `regression_model` was created with `multi_models=False` (not supported). [#2205](https://github.com/unit8co/darts/pull/2205) by [Antoine Madrona](https://github.com/madtoinou).
21
23
- Fixed a bug in `coefficient_of_variaton()` with `intersect=True`, where the coefficient was not computed on the intersection. [#2202](https://github.com/unit8co/darts/pull/2202) by [Antoine Madrona](https://github.com/madtoinou).
0 commit comments