Hi @Luis Garcia
Thanks for posting your question in Microsoft Q&A, apologize for any inconvenience caused on this.
This issue with deploying your Automated ML model due to a resource provider not being registered with your subscription. This is a common issue and can be resolved by following these steps:
- Register the Resource Provider: You need to ensure that the required resource providers are registered for your subscription. Specifically, you should register
Microsoft.MachineLearningServices
and any other necessary providers.- Azure Portal:
- Go to the Azure Portal.
- Navigate to your subscription.
- Select "Resource Providers" under the "Settings" section.
- Search for
Microsoft.MachineLearningServices
and click "Register".
- Azure CLI:
az provider register --namespace Microsoft.MachineLearningServices
- Check Subscription Quota: Ensure that your subscription has enough quota for the resources you intend to deploy, particularly for virtual machine sizes.
- Verify Permissions: Make sure your account has the required permissions (Contributor role or higher) to perform the deployment.
- Try Different Region: If the issue persists, try creating your Azure Machine Learning workspace and deploying your model in a different region.
For more detailed troubleshooting steps, you can refer to the troubleshooting guide.
I hope this is helpful! Do let me know if you are still the facing the issue.
If the reply was helpful, please don't forget to upvote and/or Accept the answer, this can be beneficial to other community members.
Thanks