skip to Main Content

AzureML remote data path

I have a MLTable data asset in Azure ML studio that I am trying to access in python and I can't figure out the structure of the path. My datastore name is fooddb and my MLTable name is food. The…

VIEW QUESTION

Azure – Please set the default workspace with MLClient

Getting error "Please set the default workspace with MLClient". How do I set the default workspace with MLClient? Trying to use data asset https://learn.microsoft.com/en-us/azure/machine-learning/how-to-create-register-data-assets?tabs=Python-SDK from azure.ai.ml.entities import Data from azure.ai.ml.constants import AssetTypes from azure.ai.ml import MLClient #Enter details of your…

VIEW QUESTION

How do I print environment packages in AzureML

I am trying to print a .yml file for an environment. I can do it for this environment: env = Environment.get(workspace = ws, name = 'AzureML-AutoML', version=115) print(env) print(env.python.conda_dependencies.serialize_to_string()) >>>Environment(Name: AzureML-AutoML, Version: 115) channels: - anaconda - conda-forge - pytorch…

VIEW QUESTION
Back To Top
Search