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

All Questions

0 votes
1 answer
329 views

Azure ML custom command component - how to use a custom image

All examples that I have seen of the use of the command_component decorator to create custom components in Azure ML pipelines use an image from Microsoft's container registry, as seen in this ...
aaron02's user avatar
  • 338
1 vote
1 answer
132 views

Read shapefile from Azure Blob Storage in Azure Machine Learning

I have several shapefiles stored in Azure Blob Storage within my Azure Machine Learning workspace, each comprising the files: file.fix, file.shp, file.dbf, file.prj, and file.shx. I need to directly ...
Vanaclocha's user avatar
1 vote
1 answer
158 views

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: ...
geominded's user avatar
  • 198
0 votes
2 answers
170 views

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 ...
ABaron's user avatar
  • 124
3 votes
0 answers
563 views

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(<inputs>): var: str = 'lorem ipsum' <function> return var # ...
Guilherme Gaigher Netto's user avatar