2,013 questions
0
votes
1
answer
13
views
"All annotations provided are ill-formed" when running automated ML experiment in azure
Has anyone run into this error when running an automated ML experiment in azureml?
"All annotations provided are ill-formed"
It's very vague. I know it has something to do with the .jsonl ...
0
votes
1
answer
35
views
Deploy an opensource LLM in Azure ecosystem and create an api endpoint
I am looking to deploy an open-source LLM like Gemma3 4b in the Azure ecosystem. I couldn't find this specific model in the model catalog of Azure Machine Learning Studio. I usually run these models ...
0
votes
0
answers
21
views
Best practice development workflow for AzureML
We're currently exploring different approaches to AI development, and Azure Machine Learning appears to offer a range of compelling features—such as simplified compute management and job orchestration....
0
votes
1
answer
58
views
Azure ML Train Test Valid split for image data
I have annotated with bounding boxes couple of hundred pictures in Azure ML Studio from a Labeling Project.
I have exported the annotations as ML Table and COCO JSON format - both are available in ...
0
votes
0
answers
23
views
mltable will not load data asset from AzureML
I am struggling to read a data asset from AzureML into my local python session. My code works up until I use mltable.load() (disguising my inputs with <...>):
from azure.identity import ...
1
vote
0
answers
32
views
Ingesting data into Azure ML model deployment
I am building an ML pipeline in Azure but it is failing when trying to invoke the endpoint with my model. The error reads:
Error Code: ScriptExecution.StreamAccess.NotFound
Native Error: error in ...
0
votes
1
answer
39
views
Azure Machine Learning - using CLI to run R code
I'm attempting to run a Azure ML job to train and save a model using R. It seems as if my pipeline runs, but it doesn't save the output. I'm using a very simple script first of all as a proof before I ...
0
votes
0
answers
29
views
Private AKS Cluster attach to AML Workspace cross subscription
I have an Azure environment like:
One subscription contains AML Workspace and other contains a private AKS Cluster,private DNS Zone and Managed Identity. I want to attach this cluster to Workspace.I ...
0
votes
1
answer
104
views
Getting (x) Input path can't be empty for jobs. error while submitting a command job in Azure ml
I am trying to submit a command job in azure ml:
ml_client.create_or_update(training_job)
But getting below error:
MlException:
1) At least one required parameter is missing
Details:
(x) Input ...
0
votes
0
answers
40
views
I cannot use the Azure ML API (Serverless Endpoint)
When I hoped to build a client like the following code, (I was using a build serverless Azure ML API, and the url and the key was right), I found a bug reported like HttpResponseError: Operation ...
0
votes
1
answer
39
views
Create AzureML job without running it
Using the AzureML API V2 for python I want to create an AzureML job without running it. The job is supposed to start only when triggered in the AzureML Web UI. How can I achieve that?
When I create ...
1
vote
0
answers
61
views
Azure AI ML - can't build local Docker container
I want to build local Docker container with and Azure CLI & Azure SDKv2, which afterwards I want to replicate in Azure ML. My objective is to have a container which can run YOLO models.
With the ...
0
votes
0
answers
52
views
Getting error MlException: ['Non-string passed to RegistryStr for model' while tyring to create a local managed online deploying of XGBoost model
I am trying to deploy a model to a Managed Online Endpoint using:
blue_deployment = ManagedOnlineDeployment(name='blue',
endpoint_name='diabetes-online-endpoint'...
0
votes
2
answers
43
views
Azure AI command job returns HttpResponseError
I'm trying to start a command job in a notebook in Azure AI. I have azure-ai-ml version 1.20.0.
All of the resources referred to below (compute, environment) work correctly for other tasks. I can ...
0
votes
1
answer
33
views
How to download only a file from azure job results using Azure ML SDK?
I want to download only "file_test.txt" file, but nothing although the code runs nothing is downloaded:
download_path = "./downloaded_outputs"
os.makedirs(download_path, exist_ok=...