Ultimate access to all questions.
You have the following Azure subscriptions and Azure Machine Learning service workspaces:
12345678-1234-1234-1234-123456789abc
ml-project
rg-ml-projects
You need to obtain a reference to the ml-project
workspace.
Solution: Run the following Python code:
from azureml.core import Workspace
ws = Workspace.get(name='ml-project',
subscription_id='12345678-1234-1234-1234-123456789abc',
resource_group='rg-ml-projects')
Does the solution meet the goal?