Questions tagged [azure-ml-pipelines]

42 questions
0
votes
1 answer

Error on Azure ML - AutoMLPipelineBuilder

I want to build a Pipeline in Azure ML. The Training pipeline runs well. Training: training_pipeline_steps = AutoMLPipelineBuilder.get_many_models_train_steps( experiment=experiment, train_data=full_dataset, …
0
votes
0 answers

Azure ML Studio Pipeline InvalidDatasetError: Dataset contains invalid data, failed to load _meta.yaml

I'm playing with Azure ML Studio pipelines and unfortunately I can not success any of pipeline run because of following error: InvalidDatasetError: Dataset contains invalid data, failed to load _meta.yaml See screenshot below: I'm using a tabular…
0
votes
1 answer

(NoMatchingArtifactsFoundFromJob) No artifacts matching outputs/model.pt found from Job - Azure ML

I am trying to create a regitered Azure ML Model using the the existing best model from the experiment which is run. The documentation I have refered said we can create it via this code. but it returns a error import datetime from…
0
votes
1 answer

Error in testing WideAndDeepRecommender model trained in Azure ML Designer

We have trained the recommendation model using WideAndDeepRecommender model in the Azure ML Designer and deployed the model in the AKS cluster. As we know the Azure WideAndDeepRecommender we can have two different types of the score Predict…
0
votes
1 answer

Cant deploy the trained model on Azure ML service

Unable to deploy the trained model using Azure Machine Learning SDK v2 I have created and trained the model whose directory looks something like this - enter image description here The main model script is 'OpenTag2018' and that script is importing…
0
votes
1 answer

How can I retrieve Azure Key Vault secrets in an Azure ML training job with a system-assigned managed identity?

No token received using an azure compute cluster as a system-assigned managed identity in a training job Package Name & Version: azure-identity==1.12.0 azure-keyvault-secrets==4.6.0 **Python Version: **: 3.9 Describe the bug I am trying to run a…
jackc
  • 1
  • 1
0
votes
0 answers

How to split a larger-than-disk file using Azure ML?

Using Azure ML components and pipelines: How to split a larger-than-disk (PGN) file into shards and save the output files to a designated uri_folder on a blob storage? Feel free to provide any best-practices to achieve the goal. I set up a component…
0
votes
1 answer

How can we upload local files to azure ml studio notebooks using python?

I want to upload the local files to azure-ml notebook tab. In azure-ml GUI we have options to upload files and folders, can we do the same thing using python sdk!
0
votes
1 answer

How to set dataset scheduling based on trigger time in Azure ML?

I'm using Azure Machine Learning (Azure ML) to manage my machine learning workflows, and I want to set up dataset scheduling based on trigger time. The dataset I'm working with has a different format than the trigger time. For example, my dataset…
0
votes
1 answer

Save the output of Azure Machine Learning jobs to a specific location using the azure ML UI interface

I'm new to Azure and Azure ML studio. I'm currently trying to bring a data processing pipeline I have built in local to cloud for a project I've been working on. I'd like to know if the "flow" I'm following is the right approach, and in case, a…
0
votes
0 answers

Building a webservice in Azure ML Studio to return similar records from a training dataset

I've searched high and low for an example of how to build an inference pipeline in Azure ML that will return records most similar to an entity passed in a Web Service Input. My dataset consists of a set of features extracted using "Extract N-Gram…
0
votes
0 answers

TypeError: Session.request() got an unexpected keyword argument 'tenant_id' while trying to access keyvault with azureml sdk v2 python

I am trying to access key vault from my python code, using SDK v2. Context: I am trying to access the key vault within a step of a pipeline created with SDK version 2. My code looks like this: This is source for a component: import…
0
votes
0 answers

How to configure working directory in Azure ML Studio Pipeline

I am trying to create a pipeline in Azure ML Studio. I don't use the designer but I want to do it with code as explained here. To begin with I am trying to run a .py file as a pipeline. This .py file reads data from different folders, located to my…
0
votes
1 answer

Change compute instance on Azure ML job

I need to rerun a pipeline that was created by a colleague, who has left the company. Every time I try to resubmit the job I get the following error. Is there a way to submit the job under a new instance I created? When I try to resubmit, there is…
0
votes
1 answer

How to format the file path in an MLTable for Azure Machine Learning uploaded during a pipeline job?

How is the path to a (.csv) file to be expressed in a MLTable file that is created in a local folder but then uploaded as part of a pipline job? I'm following the Jupyter notebook automl-forecasting-task-energy-demand-advance from the…