231 questions
Score of 0
1 answer
51 views
Avoid scheduled pipeline to be triggered immediately after creation in azureml (Python SDK v2)
When I submit a pipeline with an associated schedule, it runs immediately after submission, instead of waiting until the scheduled time of the day, day of the month, etc. Is there a way to avoid this ...
Score of 0
1 answer
75 views
Update code from existing schedules in AzureML using Python SDK v2
I would like to update the code and / or other files uploaded to the code folder being used by a specific scheduled job, keeping everything else, in particular the schedule details (time of day etc.), ...
Score of 0
1 answer
81 views
How to retrieve AzureML schedules that have at least one run successfully completed using Azure Python SDK v2?
I would like to retrieve those schedules in AzureML workspace that have been triggered and have at least one complete run (e.g., a pipeline that has been triggered under that schedule) successfully ...
Score of 0
1 answer
41 views
How to retrieve AzureML schedules that have at least one job successfully completed using Azure Python SDK v2?
I would like to retrieve those schedules in AzureML workspace that have been triggered and have at least one job successfully completed, using the Python SDK v2.
Score of 0
1 answer
107 views
How to programmatically get experiments with metrics above threshold azureml sdk v2
I have a number of experiments completed in AzureML, each one consisting of one pipeline with multiple jobs, and some of the jobs (2 in my case, say job X and job Y) having associated logged metrics. ...
Score of 0
1 answer
52 views
How can I submit a pipeline asynchronously without blocking terminal?
In AzureML python SDK v2 I would like to run a python script that submits a pipeline in such a way that the terminal doesn't get blocked until the pipeline completes.
I am currently using the ...
Score of 0
0 answers
164 views
Unable to use serverless connection in a PromptFlow pipeline
I am running my prompt flow (version 1.18.0) code as a pipeline. However, it seems like that the connection that I created in prompt flow which is referred in flow.dag.yaml is not working through a ...
Score of 1
1 answer
167 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=...
Score of 0
1 answer
255 views
Azure ML - can't use the model path
The ultimate goal - to publish my model to production. After a lot of iterations and not explicit errors I decided to do line by line check. I'm using Azure ML Notebooks.
Everything is working until I ...
Score of 1
1 answer
130 views
AttributeError: 'OrdinalEncoder' object has no attribute '_infrequent_enabled'
Getting AttributeError: 'OrdinalEncoder' object has no attribute '_infrequent_enabled' while trying to use OrdinalEncoder object in Azure ML
Score of 1
1 answer
189 views
Getting ModuleNotFoundError: No module named 'mltable' error while executing command job in Azure ml SKD v2
I am trying to run a command job that'd read in a Data Asset and perform some pre processing for further ML tasks.
To read in the data in the .py file I used the code in the consume section as below:
...
Score of 0
1 answer
113 views
pip install promptflow-vectordb dependency issue with azureml-dataprep: azureml-dataprep-native not available
I am trying to get azure promptflow to run locally in VSCode.
I am using a Mac M3 Max and a conda env with pip and python=3.9.
When I run
pip install promptflow-vectordb
I receive the following error ...
Score of 2
1 answer
353 views
How to trigger an Azure Machine Learning Studio notebook from a Databricks notebook?
I have a notebook in Azure Machine Learning Studio Workspace, and I have also created a compute cluster in the workspace. Now, I want to trigger this notebook from a Databricks notebook.
I have ...
Score of 0
1 answer
120 views
AttributeError: 'BlobServiceClient' object has no attribute '_to_rest_object'
I was trying to add a blob storage connection to MLClient and it gives me an attribute error.
What I have:
client=MLClient(
DefaultAzureCredential(),
subscription_id=sub_id,
...
Score of 0
1 answer
409 views
Passing environment to the yml configuration file for Azure Machine Learning component
I want to create Azure Machine Learning component with custom environment. I've created the Environment and uploaded it to my workspace.
from azure.ai.ml.entities import Environment
from azure.ai.ml....