Questions tagged [azure-ml-component]

10 questions
2
votes
0 answers

How to pass a string through pipeline steps azureml sdk v2?

There is a way to pass a string from a pipeline step to another in azure machine learning sdk v2? E.g.: def step_1(): var: str = 'lorem ipsum' return var # or step_1.var = var def step_2(var:…
2
votes
1 answer

I can't select By name in Columns to be cleaned in azureml designer as picture I attached. How should I deal with this?

The data output from select columns in the dataset is not coming and because of this, I am not able to get suggestions in downstream clean missing data components. I am unable to debug why data output from select columns in dataset is not…
1
vote
1 answer

Pass a partitioned TabularDataset into ParallelRunStep with azureml sdkv1

Trying to pass a partitioned TabularDataset into a ParallelRunStep as input, but getting the error and can't figure out why azureml ParallelRunStep can't recognize the partitioned dataset: UserInputNotPartitionedByGivenKeys: The input dataset…
0
votes
1 answer

Azure PCA-Based Anomaly Detection

I'm trying to create an anomaly detection model to be able to detect odd new entries in my dataset. I'm using Azure ML Studio and using the PCA-Based Anomaly Detection component. One of the options of this component is called "Training mode" and…
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 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

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 get files under Code tab in a job using AzureML python SDK

I'm trying to access the files/artifacts located in the code tab under an AzureML job. When using the azureml.core.run.Run class, the only methods suitable could be get_file_names() and download_files but they only list files under the Outputs +…
0
votes
0 answers

ModelAssetPathNotFoundInStorage error when mlflow.sklearn.autolog() used to train within an Azure ML YAML Pipeline

YAML appears correct, there are no validation issues, and the pipeline can be seen in the Azure ML Studio GUI I'm assuming the error is thrown by mlflow.sklearn.autolog() when the fit() method is called Full stacktrace not available, the exception…
0
votes
1 answer

How to submit local jobs with dsl.pipeline

Trying to run and debug a pipeline locally. Pipeline is imeplemented with azure.ml.component.dsl.pipeline. When I try to set default_compute_target='local', the compute target cannot be found: local not found in workspace, assume this is an…