[Azure ML SDK v2] Method to download Data asset locally
See original GitHub issueThe Data
class in the Azure ML SDK v2 allows the uploading and creation of a new Data asset, but not its downloading. I understand that the idea is to not use the new SDK inside training jobs. However, for exploration purposes it is very handy to be able to download a registered Data asset, as is possible with the SDK v1.
Would it be possible to add this feature? Alternatively, is there a way (using other parts of the SDK?) to download assets with paths such as azureml://datastores/<data_store_name>/paths/<path>
?
Document details
⚠ Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.
- ID: 112731d7-568e-4310-ad10-687f70e47a86
- Version Independent ID: 5ee94e1d-c95d-6def-dfbb-f31979170ed5
- Content: azure.ai.ml.entities.Data class
- Content Source: preview/docs-ref-autogen/azure-ai-ml/azure.ai.ml.entities.Data.yml
- GitHub Login: @VSC-Service-Account
Issue Analytics
- State:
- Created a year ago
- Reactions:2
- Comments:12 (1 by maintainers)
Top Results From Across the Web
Upgrade data management to SDK v2 - Azure - Microsoft Learn
Upgrade data management from v1 to v2 of Azure Machine Learning SDK. ... In V2, an AzureML data asset can be a uri_folder...
Read more >Create Data Assets - Azure Machine Learning - Microsoft Learn
Learn how to create Azure Machine Learning data assets. ... Data from Azure ML datastores, Azure Storage, public URLs, and local files.
Read more >Access data in a job - Azure Machine Learning | Microsoft Learn
Learn how to read and write data for your jobs with the Azure Machine Learning Python SDK v2 and the Azure Machine Learning...
Read more >Tutorial: ML pipelines with Python SDK v2 - Azure
You'll learn how to use the AzureML Python SDK v2 to: Connect to your Azure ML workspace; Create Azure ML data assets; Create...
Read more >Access data from Azure cloud storage during interactive ...
You may want to download the data to the local SSD of your host (local machine, cloud VM, Azure ML Compute Instance) and...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi @SturgeonMi, I briefly tried this out, but couldn’t get the authentication to work. Anyway, I found a workaround using
azure.ai.ml._artifacts._artifact_utilities.download_artifact_from_aml_uri
. This is definitely not a great solution, since it’s a “private” API, but I hope that this functionality will get exposed publicly in the azure-ai-ml package at some point.+1 on exposing this functionality would be great. To expand on @tomasvanpottelbergh 's solution, I was able to download locally using the following: