2017-06-02 130 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過濾的話題。