Ultimate access to all questions.
You have the following Azure subscriptions and Azure Machine Learning service workspaces:
ml-prod
in resource group rg-ml-prod
ml-project
in resource group rg-ml-project
You need to obtain a reference to the ml-project
workspace.
Solution: Run the following Python code:
from azureml.core import Workspace
ws = Workspace(subscription_id="sub2",
resource_group="rg-ml-project",
workspace_name="ml-project")
Does the solution meet the goal?