Question on Sending Tables from Azure ML Notebook to Microsoft Fabric
I have a couple of questions I was hoping you could help me with regarding table handling between Azure ML and Microsoft Fabric. Is there a way to create a table in an Azure ML notebook and send that table to Fabric using code? I wasn’t able to find…
Azure Machine Learning

AzureChatOpenAI GPT o4 mini model with reasoning doesnt dot support follow up questions
Hello Team, I have been experimenting with Azure OpenAI GPT o4 mini model. I am using the reasoning feature from GPT o4 mini model with Langgraph that has conversational memory. Below is the LLM defined using AzureChatOpenAI: reasoning = { …
Azure Machine Learning
How do i register for Microsoft Azure Exam in Pakistan ?
Hi, I want to take Microsoft Exam AI-900 (Microsoft Certified: Azure AI Fundamentals) in Karachi Pakistan in Person centers. When try to register it shows Error "he credit card payment option is not available for this order. If you need…
Azure Machine Learning
Error while creating a managed online endpoint in azure machine learning studio
while creating a managed online endpoint in azure machine learning studio I get the following error in my workspace's notebook: --------------------------------------------------------------------------- OperationFailed Traceback (most recent call last)…
Azure Machine Learning

How to fix Resource provider [N/A] isn't registered with Subscription [N/A]. Please see troubleshooting guide, available here: https://aka.ms/register-resource-provider (Code: SubscriptionNotRegistered)
We have Microsoft Sponsored Subscription in addition to our regular subscriptions. When creating a workspace for Azure Machine Learning and then deploying a model in our regular subscription there is no problem. However, when replicating the same…
Azure Machine Learning
How to setup real time inferencing for robotic application?
I'm new to Azure and would like to know my best option for an application where I need to send real-time video data to a model for inferencing and then get the predicted actions. I already have the setup for model training and the model registered in ML…
Azure Machine Learning
UserError: BaseJob is not supported in the current API version Apr2023Preview, please upgrade to the latest API.
I'm trying to trigger an azure ml pipeline component but the job fails after around 20 secs with the following error: UserError: BaseJob is not supported in the current API version Apr2023Preview, please upgrade to the latest API. I see this error as a…
Azure Machine Learning
BaseJob is not supported in the current API version Apr2023Preview, please upgrade to the latest API.
I am currently using Azure SDK V1 for python to submit jobs to an Azure Machine Learning workspace. Lately, each execution run has been showing this warning. I guess it is somewhat because of the SDK V1 im currently using, but i have not been able to…
Azure Machine Learning
How to make serverless compute instace inherit management identity
I'm using an app registration so I can work locally and deploy a batch endpoint pipeline with the following component: train_component = command( name="ml_classification_flow_serveless", …
Azure Machine Learning
How to fix Endpoint creating failing to provision and Prompt flow deployment then fails as well.
When I create a Prompt flow in Azure AI studio and try to deploy it I continue to get an issue with the endpoint trying to deploy which also causes the deployment to fail. I have done similar prompt flows on other orgs and it works correctly. When the…
Azure Machine Learning
Azure AI services

Unable to Create Online Endpoint in Azure ML — Resource Provider Error
Hi all, I’m trying to deploy an Azure Machine Learning online endpoint, and I’m running into this error both in the Azure CLI and directly in the Azure Portal: (SubscriptionNotRegistered) Resource provider [N/A] isn't registered with Subscription…
Azure Machine Learning
Creating compute session is constantly failing in azure ai foundry hub
Hi, I'm having trouble starting an AI Foundry compute instance. Each attempt results in an error message. I've tried deploying across different region hubs, used both serverless and provisioned compute instances in multiple regions, and experimented with…
Azure Machine Learning


Is Azure Prompt Flow suggested to use in 2025?
Hello, I couldn't find many resources online for azure prompt flow and its uses. Is it still a suggested tool to use in 2025? I have concerns about deployment and production use. Q - Are there any alternatives available as well which might be better than…
Azure Machine Learning
I'm suddenly getting a 400 error when validating a component spec in Azure ML that worked before—any idea what might have changed or how to troubleshoot it?
Getting this error in my workspaces when I try to register a component earlier it was working perfectly I even tried registering components that are given as examples in the azure ml examples repository it also getting the same error. Any idea how to…
Azure Machine Learning
Job Upload Issues in Azure with Python Code in R-Studio
Experiencing an issue when uploading jobs to Azure using Python code in R-Studio. The following error message is received: Unable to retrieve SaS Urls for project download. Snapshot data appears to be invalid. Tip: Please resubmit the job with a new code…
Azure Machine Learning
ML Studio jobs failing to start with ServiceError: InternalServerError and not other logs
I'm trying to submit a job to Azure ML Studio but when I do the job gets stuck in the "Preparing" state for about 4 hours then fails with error message "ServiceError: InternalServerError". Some other details: The environment…
Azure Machine Learning
Is it possible to scale to zero instances an azure ml online endpoint ?
I'm creating an online inference endpoint and I want to cut costs when there are no calls to it. I followed this tutorial…
Azure Machine Learning
How to load multiple registered models under one scoring script?
Issue with Loading Multiple Models from a Registered ZIP Artifact in Azure ML Studio I registered a single model artifact (ml_bundle.zip) in Azure Machine Learning Studio that contains four separate model files: ml_bundle.zip/ ├── model1.pkl ├──…
Azure Machine Learning
Why do I get the following error when I attempt to deploy my batch endpoint in Azure ML: "could not find datastore azureml"
I very frequently get the following error when I attempt to deploy a batch endpoint: "could not find datastore azureml." I am using Auto ML in Azure Machine Learning Studio. It doesn't happen all the time but it does happen frequently. I…
Azure Machine Learning

How to install dependencies to build wheel for a python package using pyproject.toml?
I've a conda.yaml file with which I've created a custom environment. Now to run my repo for training, I've to 'pip install -e .' because I've a pyproject.toml file contains all the necessary dependencies to run this repo. But when I want to run a…