I have executed "pip install azureml-automl-runtime" in azure notebook. When I try to load the model with below code
model_path = "forecast/model.pkl"
loaded_model = pickle.load(open(model_path, 'rb'))
I have tried loaded_model = joblib.load(open(model_path, 'rb')) as well but same error is displayed.
then "ModuleNotFoundError: No module named 'azureml.automl.runtime._automl_forecast_freq' " error message is displayed.