Questions tagged [azuremlsdk]

74 questions
0
votes
1 answer

azure cli not recognizing the following command az ml data create -f .yml

got a folder called data-asset which contains a yaml file with the following type: uri_folder name: description: path: In a pipeline am referencing this using azure cli inline script using the following…
0
votes
1 answer

ModuleNotFoundError while using AzureML pipeline with yml file based RunConfiguration and environment.yml

I am running into a ModuleNotFoundError for pandas while using the following code to orchestrate my Azure Machine Learning Pipeline: # Loading run config print("Loading run config") task_1_run_config = RunConfiguration.load( …
0
votes
1 answer

How to delete azureml dataset if it already exists

Created an azure ml dataset. how do I delete the dataset if it already exists? #register dataset path='path' file_ds=Dataset.File.from_files(path=path) file_ds=file_ds.register(workspace=ws,name="Dataset")
0
votes
1 answer

Azureml Training model fail with libgomp.so.1

I hope you can help me out with this issue as I cannot figure out what is wrong or how to solve it. I am diving into MLOps to have a better understanding of the workflow and process. I found an open source project to test my knowledge(I am not sure…
0
votes
1 answer

How to authenticate within Azure ML pipeline and avoid browser interactive authentication?

I have created a very simple azure ml pipeline. Basically, it accesses data through an api and prints it. I have tried using a ClientSecretCredential and a ServicePrincipalAuthentication but the pipeline still asks me for a web browser…
E.Brum
  • 43
  • 1
  • 5
0
votes
1 answer

Azure ML Workspace missing secrets of associated keyvault, no way to access its datastores

by mistake I deleted the secrets from my keyvault, which were associated to my default Azure Machine Learning datastores (workspacefilestore, workspaceartifactstore and workspaceblobstore). As a result, when I click on one of these datastores (or a…
0
votes
1 answer

Unable to get image details : Environment version Autosave_(date)T(time)Z_******** provided in request doesn't match environ

On AzureML Batchendpoint, I'm recently hitting the following error: Unable to get image details : Environment version Autosave_(date)T(time)Z_******** provided in request doesn't match environ. when I setup the batch-endpoint with a yml…
0
votes
1 answer

Azure ML Tabular Dataset : missing 1 required positional argument: 'stream_column'

For the Python API for tabular dataset of AzureML (azureml.data.TabularDataset), there are two experimental methods which have been introduced: download(stream_column, target_path=None, overwrite=False, ignore_not_found=True) mount(stream_column,…
0
votes
1 answer

AzureMLCompute job failed with `FailedLoginToImageRegistry`

I've been trying to send a train job through azure ml python sdk with: from azureml.core import Workspace, Experiment, ScriptRunConfig if __name__ == "__main__": ws = Workspace.from_config() experiment = Experiment(workspace=ws,…
0
votes
0 answers

Not able to read model.pkl from output folder in Azure ML

I'm try to read the model.pkl file from the artifacts output folder like this def init(): global model # infile = open('model.pkl','rb') # model = pickle.load(infile) #model = joblib.load('model.pkl') model_path =…
0
votes
1 answer

score/entry file for azure machine learning web services using azuremlsdk

Looking at this example: library(azuremlsdk) library(jsonlite) ws <- load_workspace_from_config() # Register the model model <- register_model(ws, model_path = "model.rds", model_name = "model.rds") # Create environment r_env <-…
cs0815
  • 16,751
  • 45
  • 136
  • 299
-1
votes
0 answers

Upgrade to Azure ML SDK 2

I am currently in the process of training a model using the LGBM algorithm, and the features I have include five categorical features and one textual feature. For preprocessing, I use the CountVectorizer method for the categorical features. For the…
-1
votes
1 answer

Azure Machine Learning Studio - Data access for different users

am using Azure Machine Learning Studio and have a lot of SQL-Databases and storage accoutns as data sources attached and created many datasets. Since we've many users (with IAM role Azure Data Scientist) in Azure Machine Learning Studio, we need to…
-1
votes
1 answer

i run into an error registering azure ml sdk output data into the datastore

I am doing data engineering on my data for ML but after editing and adding some columns i cant register the output to the datastore and i get the error on the image how can I solve this error?
1 2 3 4
5