Reputation: 297
Do you know how back up machine learning models in Azure Machine Learning Studio in case of idle time when subscription is not bought. I would preferably back those models in Azure DB/DWH on other accounts/instances of Azure. Is it actually possible to copy models' flow to another locations or share it with other users? I would appreciate the answer.
Upvotes: 1
Views: 1048
Reputation: 876
There's no way to backup the experiments you've created directly. You can share the models with other users in two way.
Use 'Publish to gallery' operation as shown in below for the above task.
Upvotes: 2
Reputation: 24148
Based on my understanding, I think you want to export your experiments in Azure Machine Learning Studio to local as a file or other type resources. There seems not to be any way for doing this on Azure offical sites, but I searched a third party tool named azuremlps
which is a PowerShell module for Azure ML Studio from a MSFT. You can try to use the cmdlet Export-AmlExperimentGraph
to export a specific Experiment graph to a file in JSON format.
Hope it helps.
Upvotes: 3