QuestionQ1
Implement machine learning model lifecycle and operationsHOTSPOT -
You manage an Azure Machine Learning workspace named workspace1 by using the Python SDK v2. You create a General Purpose v2 Azure storage account named mlstorage1. The storage account includes a publicly accessible container named mlcontainer1. The container stores 10 blobs with files in the CSV format.
You must develop Python SDK v2 code to create a data asset referencing all blobs in the container named mlcontainer1.
You need to complete the Python SDK v2 code. How should you complete the code?
Select
sample_dataset = Data( path=://mlstorage1.blob.core.windows.net/mlcontainer1, type=AssetTypes., description="sample_dataset", name="sample_dataset", version='1.0' )
Community Discussion