from sktime.forecasting.compose import ReducedRegressionForecaster
Asked
Active
Viewed 2,307 times
1

Khalid Ali
- 1,224
- 1
- 8
- 12

Waheed Waqar
- 13
- 5
2 Answers
0
Thats because that doesn't exist.
https://github.com/alan-turing-institute/sktime/blob/master/sktime/forecasting/compose/__init__.py
Thats not exported by the librray. Perhaps you wanted
RegressionForcaster
or RecursiveRegressionForecaster

Daggy1234
- 40
- 1
- 9
-
I don't know why it is not imported but people are using reducedRegressionForecaster. I saw many articles based on ReducedRegressionForecaster – Waheed Waqar Mar 18 '21 at 11:49
-
The named changed to `ReducedForecaster` - this is a bit of an oversight on our sight. We shouldn't have changed the name in a minor version update. sktime is still a really young project. Some features are not consolidated yet and are likely to change in the future. – mloning Mar 19 '21 at 10:32
0
Downgrading the version to 0.5.2 works for me.
-
1Your answer could be improved with additional supporting information. Please [edit] to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Jun 25 '22 at 08:49