Skip to content

Commit 91dbdd7

Browse files
authored
Update concept-automated-ml.md
1 parent f12156d commit 91dbdd7

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

articles/machine-learning/concept-automated-ml.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: conceptual
99
ms.reviewer: jmartens
1010
author: cartacioS
1111
ms.author: sacartac
12-
ms.date: 02/28/2020
12+
ms.date: 04/22/2020
1313
---
1414

1515
# What is automated machine learning?
@@ -72,6 +72,13 @@ Using **Azure Machine Learning**, you can design and run your automated ML train
7272

7373
1. **Identify the ML problem** to be solved: classification, forecasting, or regression
7474

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+
7582
1. **Specify the source and format of the labeled training data**: Numpy arrays or Pandas dataframe
7683

7784
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:
125132

126133
+ Python SDK: Specifying `"feauturization": 'auto' / 'off' / 'FeaturizationConfig'` for the [`AutoMLConfig` class](/python/api/azureml-train-automl-client/azureml.train.automl.automlconfig.automlconfig).
127134

128-
129-
130135
## <a name="ensemble"></a> Ensemble models
131136

132137
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
148153

149154
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).
150155

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
158157

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.
160159

161160
<a name="parity"></a>
162161

0 commit comments

Comments
 (0)