@Anonymous Thanks for the question. The error message “Could not find datastore: azureml” suggests that the Azure ML workspace is unable to locate a datastore with the name “azureml”. Each Azure ML workspace comes with a default datastore that can be accessed using the following code
from azureml.core import Workspace
ws = Workspace.from_config()
datastore = ws.get_default_datastore()
you may need to update your code to use the correct name of an existing datastore.