Skip to content

Commit ce64857

Browse files
authored
Merge pull request #110164 from nibaccam/onnx
Auto ML | ONNX-->C# links
2 parents 9c30db4 + d213dbc commit ce64857

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

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

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ Automated machine learning, also referred to as automated ML, is the process of
1818

1919
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.
2020

21-
22-
23-
2421
## When to use automated ML
2522

2623
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
138135

139136
See the [how-to](how-to-configure-auto-train.md#ensemble) for changing default ensemble settings in automated machine learning.
140137

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).
142143

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).
144145

145146
## Automated ML in Azure Machine Learning
146147

@@ -150,7 +151,7 @@ Azure Machine Learning offers two experiences for working with automated ML
150151

151152
* For limited/no code experience customers, Azure Machine Learning studio at [https://ml.azure.com](https://ml.azure.com/)
152153

153-
The following summarizes the high level automated ML capabilities supported in each experience.
154+
The following summarizes the high-level automated ML capabilities supported in each experience.
154155

155156
<a name="parity"></a>
156157

@@ -161,7 +162,7 @@ The following settings allow you to configure your automated ML experiment.
161162
| | Python SDK| studio
162163
----|:----:|:----:
163164
Split data into train/validation sets| ✓|✓
164-
Supports ML tasks: classification, regression and forecasting| ✓| ✓
165+
Supports ML tasks: classification, regression, and forecasting| ✓| ✓
165166
Optimizes based on primary metric| ✓| ✓
166167
Supports AML compute as compute target | ✓|✓
167168
Configure forecast horizon, target lags & rolling window|✓|✓

0 commit comments

Comments
 (0)