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
+8-7Lines changed: 8 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,9 +18,6 @@ Automated machine learning, also referred to as automated ML, is the process of
18
18
19
19
Traditional machine learning model development is resource-intensive, requiring significant domain knowledge and time to produce and compare dozens of models. With automated machine learning, you'll accelerate the time it takes to get production-ready ML models with great ease and efficiency.
20
20
21
-
22
-
23
-
24
21
## When to use automated ML
25
22
26
23
Apply automated ML when you want Azure Machine Learning to train and tune a model for you using the target metric you specify. Automated ML democratizes the machine learning model development process, and empowers its users, no matter their data science expertise, to identify an end-to-end machine learning pipeline for any problem.
@@ -138,9 +135,13 @@ The [Caruana ensemble selection algorithm](http://www.niculescu-mizil.org/papers
138
135
139
136
See the [how-to](how-to-configure-auto-train.md#ensemble) for changing default ensemble settings in automated machine learning.
140
137
141
-
## Use with ONNX in C# apps
138
+
## Use with ONNX
139
+
140
+
With Azure Machine Learning, you can use automated ML to build a Python model and have it converted to the ONNX format. Once the models are in the ONNX format, they can be run on a variety of platforms and devices. Learn more about [accelerating ML models with ONNX](concept-onnx.md).
141
+
142
+
See how to convert to ONNX format [in this Jupyter notebook example](https://github.com/Azure/MachineLearningNotebooks/blob/master/how-to-use-azureml/automated-machine-learning/classification-bank-marketing-all-features/auto-ml-classification-bank-marketing-all-features.ipynb). Learn which [algorithms are supported in ONNX](how-to-configure-auto-train.md#select-your-experiment-type).
142
143
143
-
With Azure Machine Learning, you can use automated ML to build a Python model and have it converted to the ONNX format. The ONNX runtime 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. Try an example of this flow [in this Jupyter notebook](https://github.com/Azure/MachineLearningNotebooks/blob/master/how-to-use-azureml/automated-machine-learning/classification-bank-marketing-all-features/auto-ml-classification-bank-marketing-all-features.ipynb).
144
+
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).
144
145
145
146
## Automated ML in Azure Machine Learning
146
147
@@ -150,7 +151,7 @@ Azure Machine Learning offers two experiences for working with automated ML
150
151
151
152
* For limited/no code experience customers, Azure Machine Learning studio at [https://ml.azure.com](https://ml.azure.com/)
152
153
153
-
The following summarizes the highlevel automated ML capabilities supported in each experience.
154
+
The following summarizes the high-level automated ML capabilities supported in each experience.
154
155
155
156
<aname="parity"></a>
156
157
@@ -161,7 +162,7 @@ The following settings allow you to configure your automated ML experiment.
161
162
| | Python SDK| studio
162
163
----|:----:|:----:
163
164
Split data into train/validation sets| ✓|✓
164
-
Supports ML tasks: classification, regression and forecasting| ✓| ✓
165
+
Supports ML tasks: classification, regression, and forecasting| ✓| ✓
165
166
Optimizes based on primary metric| ✓| ✓
166
167
Supports AML compute as compute target | ✓|✓
167
168
Configure forecast horizon, target lags & rolling window|✓|✓
0 commit comments