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-8Lines changed: 8 additions & 8 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
author: manashgoswami
10
10
ms.author: manashg
11
11
ms.reviewer: ssalgado
12
-
ms.date: 06/7/2023
12
+
ms.date: 04/08/2024
13
13
ms.custom: automl
14
14
---
15
15
@@ -24,7 +24,7 @@ Automated machine learning, also referred to as automated ML or AutoML, is the p
24
24
25
25
## How does AutoML work?
26
26
27
-
During training, Azure Machine Learning creates a number of pipelines in parallel that try different algorithms and parameters for you. The service iterates through ML algorithms paired with feature selections, where each iteration produces a model with a training score. The better the score for the metric you want to optimize for, the better the model is considered to "fit" your data. It will stop once it hits the exit criteria defined in the experiment.
27
+
During training, Azure Machine Learning creates many pipelines in parallel that try different algorithms and parameters for you. The service iterates through ML algorithms paired with feature selections, where each iteration produces a model with a training score. The better the score for the metric you want to optimize for, the better the model is considered to "fit" your data. It stops once it hits the exit criteria defined in the experiment.
28
28
29
29
Using **Azure Machine Learning**, you can design and run your automated ML training experiments with these steps:
30
30
@@ -54,14 +54,14 @@ Apply automated ML when you want Azure Machine Learning to train and tune a mode
54
54
ML professionals and developers across industries can use automated ML to:
55
55
+ Implement ML solutions without extensive programming knowledge
56
56
+ Save time and resources
57
-
+Leverage data science best practices
57
+
+Apply data science best practices
58
58
+ Provide agile problem-solving
59
59
60
60
### Classification
61
61
62
-
Classification is a type of supervised learning in which models learn using training data, and apply those learnings to new data. Azure Machine Learning offers featurizations specifically for these tasks, such as deep neural network text featurizers for classification. Learn more about [featurization options](how-to-configure-auto-train.md#data-featurization). You can also find the list of algorithms supported by AutoML [here](how-to-configure-auto-train.md#supported-algorithms).
62
+
Classification is a type of supervised learning in which models learn to use training data, and apply those learnings to new data. Azure Machine Learning offers featurizations specifically for these tasks, such as deep neural network text featurizers for classification. Learn more about [featurization options](how-to-configure-auto-train.md#data-featurization). You can also find the list of algorithms supported by AutoML [here](how-to-configure-auto-train.md#supported-algorithms).
63
63
64
-
The main goal of classification models is to predict which categories new data will fall into based on learnings from its training data. Common classification examples include fraud detection, handwriting recognition, and object detection.
64
+
The main goal of classification models is to predict which categories new data fall into based on learnings from its training data. Common classification examples include fraud detection, handwriting recognition, and object detection.
65
65
66
66
See an example of classification and automated machine learning in this Python notebook: [Bank Marketing](https://github.com/Azure/azureml-examples/blob/main/sdk/python/jobs/automl-standalone-jobs/automl-classification-task-bankmarketing/automl-classification-task-bankmarketing.ipynb).
67
67
@@ -78,7 +78,7 @@ See an example of regression and automated machine learning for predictions in t
78
78
79
79
Building forecasts is an integral part of any business, whether it's revenue, inventory, sales, or customer demand. You can use automated ML to combine techniques and approaches and get a recommended, high-quality time-series forecast. You can find the list of algorithms supported by AutoML [here](how-to-configure-auto-train.md#supported-algorithms).
80
80
81
-
An automated time-series experiment is treated as a multivariate regression problem. Past time-series values are "pivoted" to become additional dimensions for the regressor together with other predictors. This approach, unlike classical time series methods, has an advantage of naturally incorporating multiple contextual variables and their relationship to one another during training. Automated ML learns a single, but often internally branched model for all items in the dataset and prediction horizons. More data is thus available to estimate model parameters and generalization to unseen series becomes possible.
81
+
An automated time-series experiment is treated as a multivariate regression problem. Past time-series values are "pivoted" to become more dimensions for the regressor together with other predictors. This approach, unlike classical time series methods, has an advantage of naturally incorporating multiple contextual variables and their relationship to one another during training. Automated ML learns a single, but often internally branched model for all items in the dataset and prediction horizons. More data is thus available to estimate model parameters and generalization to unseen series becomes possible.
82
82
83
83
Advanced forecasting configuration includes:
84
84
* holiday detection and featurization
@@ -184,7 +184,7 @@ See the [AutoML package](/python/api/azure-ai-ml/azure.ai.ml.automl) for changin
184
184
185
185
## AutoML & ONNX
186
186
187
-
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).
187
+
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 various platforms and devices. Learn more about [accelerating ML models with ONNX](concept-onnx.md).
188
188
189
189
See how to convert to ONNX format [in this Jupyter notebook example](https://github.com/Azure/azureml-examples/tree/v1-archive/v1/python-sdk/tutorials/automl-with-azureml/classification-bank-marketing-all-features). Learn which [algorithms are supported in ONNX](how-to-configure-auto-train.md#supported-algorithms).
190
190
@@ -201,7 +201,7 @@ Tutorials are end-to-end introductory examples of AutoML scenarios.
201
201
202
202
+**For a low or no-code experience**, see the [Tutorial: Train a classification model with no-code AutoML in Azure Machine Learning studio](tutorial-first-experiment-automated-ml.md).
203
203
204
-
How-to articles provide additional detail into what functionality automated ML offers. For example,
204
+
How-to articles provide more detail into what functionality automated ML offers. For example,
205
205
206
206
+ Configure the settings for automatic training experiments
207
207
+[Without code in the Azure Machine Learning studio](how-to-use-automated-ml-for-ml-models.md).
0 commit comments