skip to Main Content

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

Unable to append data into Azure storage using Python

I am using the below code to append data to Azure blob using python. from azure.storage.blob import AppendBlobService append_blob_service = AppendBlobService(account_name='myaccount', account_key='mykey') # The same containers can hold all types of blobs append_blob_service.create_container('mycontainer') # Append blobs must be created before…

VIEW QUESTION
Back To Top
Search