Visual Studio中的Microsoft Azure机器学习工作室?

时间:2017-04-22 16:51:24

标签: c# python machine-learning azure-machine-learning-studio

有没有办法使用与Microsoft Azure Machine Learning Studio相同的ML实现,但在没有可视界面的计算机上使用?

当我玩“试用”模型时,我喜欢Azure ML工作室,但如果我可以将命令序列存储在我的机器上,那将会很棒。

我的意思是说在Python中的C#或库中是否有一些引用可以实现这一点?或者是否有API?

谢谢!

1 个答案:

答案 0 :(得分:0)

您可以使用Powershell将实验下载到JSON文件中,然后在VS中进行编辑。

# Export an Experiment named "xyz" to "MyExp.json"
$exp = Get-AmlExperiment | where Description -eq 'xyz'
Export-AmlExperimentGraph -ExperimentId $exp.ExperimentId -OutputFile 'c:\Temp\MyExp.json'

但是,此cmdlet存在一个主要限制,即实验中引用的任何资产(除AzureML全局资源外)都不包含在导出的图形中。

请参阅此处了解更多信息: https://github.com/hning86/azuremlps#export-amlexperimentgraph