For the following line in godo 4:
from azureml.train.automl import AutoMLConfig,
we are getting the following error:
ModuleNotFoundError: No module named 'azureml.train.automl'
When checking the modules contained in azureml.train, we get the following, please note that automl is not part of the modules.
import azureml.train as az
dir(az)
['builtins', 'cached', 'doc', 'file', 'loader', 'name', 'package', 'path', 'spec', 'estimatorhelper', 'telemetrylogger', 'hyperdrive', 'restclients']
Kindly help to import the same.