Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

0 votes
0 answers
57 views

StreamError sharing inputs form Sweep Job to Command Job - AzureML SDKv2

We have AML pipelines (sdk v2) containing three steps i.e training, image_creation and model_selector. We are using command components for these three steps. All of our steps can run in isolation as ...
Obiii's user avatar
  • 750
0 votes
0 answers
275 views

Azure Machine Learning SDK V2 - Sequencing pipeline steps with sweep job

We are trying to migrate our azure ml pipelines from SDKV1 to SDKV2. The problem we are facing is that we cannot sequence the pipeline steps like we used to to in SDKV1. In SDKV1, we could simply do ...
Obiii's user avatar
  • 750
0 votes
0 answers
147 views

Use Azure ML Environment from Share ML Registry with Python SDK

We have created an environment in azure ML shared registry. The environment was built into the registry. Here is what it looks like: A DevOps pipeline creates this environment: az ml environment ...
Obiii's user avatar
  • 750
1 vote
0 answers
272 views

ClientAuthenticationError when trying to upload a registered component to Azure ML using Python Azure ML SDK v2

Would appreciate any help resolving the following issue, and if anyone knows a way to import a model from Azure Model Reigstry into Azure ML Pipelines. I'm using the latest version of Azure ML SDK v2 ...
WeMoveOn's user avatar
0 votes
1 answer
202 views

Azure Machine Learning Studio -getting error in consumption of endpoint

I have deployed a machine learning model as a pickle file in azure machine learning. The endpoint is created. Now, I am trying to consume the endpoint through the following codes: import requests ...
shan's user avatar
  • 583
2 votes
1 answer
765 views

Getting the Azure ML environment build status

I am trying to set up a ML pipeline on Azure ML using the Python SDK. I have scripted the creation of a custom environment from a DockerFile as follows from azureml.core import Environment from ...
Rafael Sanchez's user avatar
0 votes
1 answer
843 views

Azure ML Pipeline fails while running a grid search CV on a cluster

I implemented a gridsearchcv on Azure ML as a pipeline but I keep getting an error that says "User program failed with TerminatedWorkerError: A worker process managed by the executor was ...
mark_r's user avatar
  • 1
1 vote
1 answer
2k views

How to transfer data from Azure ML (Notebooks) to a storage container

I need to transfer a file from my Azure ML workspace(notebooks folder) to a storage container. Tried this in jupyter notebook; import azureml.core from azureml.core import Workspace, Datastore import ...
adey27's user avatar
  • 459
3 votes
1 answer
453 views

SSL Error accessing azure datastore for Azure Auto ML

I am implementing Azure AutoML dashboard in a docker container. When I access container without Docker it works. But in docker it gives SSL Error. def upload_dataset_to_blob(ws): datastore = ws....
Ravish's user avatar
  • 31