You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/machine-learning/concept-automated-ml.md
+10-11Lines changed: 10 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ ms.topic: conceptual
9
9
ms.reviewer: jmartens
10
10
author: cartacioS
11
11
ms.author: sacartac
12
-
ms.date: 02/28/2020
12
+
ms.date: 04/22/2020
13
13
---
14
14
15
15
# What is automated machine learning?
@@ -72,6 +72,13 @@ Using **Azure Machine Learning**, you can design and run your automated ML train
72
72
73
73
1.**Identify the ML problem** to be solved: classification, forecasting, or regression
74
74
75
+
1.**Choose whether you want to use the Python SDK or the studio web experience**.
76
+
* For Python developers, check out the [Azure Machine Learning Python SDK](https://docs.microsoft.com/python/api/overview/azure/ml/?view=azure-ml-py#automlconfig)
77
+
78
+
* For limited or no code experience, try the Azure Machine Learning studio web experience at [https://ml.azure.com](https://ml.azure.com/)
79
+
80
+
Learn about the parity between the [Python SDK and studio web experience](#parity).
81
+
75
82
1.**Specify the source and format of the labeled training data**: Numpy arrays or Pandas dataframe
76
83
77
84
1.**Configure the compute target for model training**, such as your [local computer, Azure Machine Learning Computes, remote VMs, or Azure Databricks](how-to-set-up-training-targets.md). Learn about automated training [on a remote resource](how-to-auto-train-remote.md).
@@ -125,8 +132,6 @@ Enable this setting with:
125
132
126
133
+ Python SDK: Specifying `"feauturization": 'auto' / 'off' / 'FeaturizationConfig'` for the [`AutoMLConfig` class](/python/api/azureml-train-automl-client/azureml.train.automl.automlconfig.automlconfig).
127
134
128
-
129
-
130
135
## <aname="ensemble"></a> Ensemble models
131
136
132
137
Automated machine learning supports ensemble models, which are enabled by default. Ensemble learning improves machine learning results and predictive performance by combining multiple models as opposed to using single models. The ensemble iterations appear as the final iterations of your run. Automated machine learning uses both voting and stacking ensemble methods for combining models:
@@ -148,15 +153,9 @@ See how to convert to ONNX format [in this Jupyter notebook example](https://git
148
153
149
154
The ONNX runtime also supports C#, so you can use the model built automatically in your C# apps without any need for recoding or any of the network latencies that REST endpoints introduce. Learn more about [inferencing ONNX models with the ONNX runtime C# API](https://github.com/Microsoft/onnxruntime/blob/master/docs/CSharp_API.md).
150
155
151
-
## Automated ML in Azure Machine Learning
152
-
153
-
Azure Machine Learning offers two experiences for working with automated ML
154
-
155
-
* For code experienced customers, [Azure Machine Learning Python SDK](https://docs.microsoft.com/python/api/overview/azure/ml/intro?view=azure-ml-py)
156
-
157
-
* For limited/no code experience customers, Azure Machine Learning studio at [https://ml.azure.com](https://ml.azure.com/)
156
+
## Automated ML in studio vs SDK
158
157
159
-
The following summarizes the high-level automated ML capabilities supported in each experience.
158
+
Learn about the parity and differences between the high-level automated ML capabilities available through the Python SDK and the studio.
0 commit comments