Getting unexpected error while performing the Explore Automated ML in Azure ML

pranjal aggarwal 0 Reputation points
2025-08-07T15:41:50.06+00:00

Hi Community,

I’m currently facing an issue while performing the lab "Explore Automated ML in Azure ML" — the deployment step keeps failing, and I haven’t been able to resolve it despite multiple attempts.

Here’s what I’ve tried so far:

  • I’m using a Pay-As-You-Go subscription.
  • All required resources and services are registered in the subscription.
  • I’ve attempted the deployment using different VM sizes and regions.

I’ve cross-checked all steps carefully with the Activity Guide and even had a meeting with a peer to ensure everything is being followed correctly.

Despite all this, the deployment continues to fail, and I’m not getting any clear error message that points to a fix.

I am attaching the screenshots of the errors. I would appreciate any guidance or suggestions on how to proceed.

Many thanks for considering my request.
PranjalWhatsApp Image 2025-08-07 at 20.59.50_3a05fd42

communityimage

Azure Machine Learning
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Divyesh Govaerdhanan 8,340 Reputation points
    2025-08-07T16:34:14.4266667+00:00

    Hello,

    Welcome to Microsoft Q&A,

    The error generally means that the necessary Azure Resource Providers for Azure Machine Learning (AML) haven’t been registered for your subscription, which is required to deploy Automated ML resources like compute clusters, workspaces, or experiments.

    Option A: Azure CLI

    az provider register --namespace Microsoft.MachineLearningServices
    az provider register --namespace Microsoft.Storage
    az provider register --namespace Microsoft.KeyVault
    az provider register --namespace Microsoft.Compute
    

    Option B: Azure Portal

    1. Go to Azure Portal → Subscriptions
    2. Select your subscription (e.g., Pay-As-You-Go)
    3. Click on Resource Providers from the left menu
    4. Search for and register:
      1. Microsoft.MachineLearningServices
      2. Microsoft.Storage
      3. Microsoft.Compute
      4. Microsoft.KeyVault
      5. (Any other unregistered services related to your lab)

    Once providers are registered (may take a few minutes), try rerunning the Automated ML lab deployment.

    https://learn.microsoft.com/en-us/azure/azure-resource-manager/management/resource-providers-and-types#register-resource-provider

    Please Upvote and accept the answer if it helps!!


  2. Izhar Alam 0 Reputation points
    2025-08-08T07:26:12.6433333+00:00

    Hi, Thanks for your response,

    Please let me know which subscription is required (free or pay-as-you-go) to perform this lab successfully?

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.