Reputation: 303
Running this orange juice sales notebook I get the below error with the .forecast()
method.
# The featurized data, aligned to y, will also be returned.
# This contains the assumptions that were made in the forecast
# and helps align the forecast to the original data
y_predictions, X_trans = fitted_model.forecast(X_test)
**AttributeError: 'TimeSeriesImputer' object has no attribute '_known_df'**
Upvotes: 1
Views: 423
Reputation: 131
This is commonly fixed by upgrading to the latest SDK. You can do this by running pip install --upgrade azureml-sdk[explain,automl]
.
Thanks, Sabina
Upvotes: 2