2017-06-02 147 views
0

我已经开始使用Azure Studio ML,并想知道是否有将学习曲线代码(python或R)输入到我的模型中的方法。如何在Azure机器学习上应用学习曲线

我正在接受两级增强决策树的培训,并且想检查我的结果是否过度配合。

我也发现学习曲线的一些代码,我知道有一个框在R或Python中执行代码,但我不知道我在代码中有什么变化(如果我真的必须)以及如何将我的数据集连接到这个代码

代码来源:http://www.ritchieng.com/machinelearning-learning-curve/

谢谢 卢卡斯

回答

0

我回顾你链接的文档,有代码源使用的一些Python包,其中包括sklearnmatplotlib支持Azure ML studio的numpy。所以你只需要参考官方教程Execute Python machine learning scripts in Azure Machine Learning Studio来编写你的脚本。

对于如何连接数据集或加载数据,如果使用Python进行操作,可以参考这些文档。

  1. Access datasets with Python using the Azure Machine Learning Python client library
  2. Move data to and from Azure Blob Storage using Python
  3. Create features for data in SQL Server using SQL and Python

其他方式来连接数据集或加载数据,请移动到here通过关键词Acquire and understand data过滤的话题。