I want to download all model pickle files which are registered in azureml workspace to a local folder. is this possible? using python only don't want to manually download each pickle file using ui
Asked
Active
Viewed 347 times
0

desertnaut
- 57,590
- 26
- 140
- 166

paul
- 55
- 5
-
Can you please add more details about the SDK version that you are using? – Ram Nov 16 '22 at 06:14
-
@Ram-msft using azureml-sdk 1.47.0 version – paul Nov 16 '22 at 08:30
1 Answers
1
once you retrieve your model from your workspace you can do the following
model.download(exist_ok=True)
This is shown in the docs- https://learn.microsoft.com/en-us/python/api/azureml-core/azureml.core.model.model?view=azure-ml-py#azureml-core-model-model-download
This answer form @Ninja_coder for this question might be helpful- Model.get_model_path(model_name="model") throws an error: Model not found in cache or in root at

Muhammad Pathan
- 429
- 3
- 12