Skip to content

Commit 62814a2

Browse files
authored
Merge pull request #105822 from nibaccam/patch-5
AutoML | Add classification + regression section
2 parents 6cd8505 + 2e72d20 commit 62814a2

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

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

Lines changed: 9 additions & 1 deletion
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: 11/04/2019
12+
ms.date: 02/28/2020
1313
---
1414

1515
# What is automated machine learning?
@@ -151,6 +151,14 @@ When comparing models **A** and **B**, model **A** is a better model because it
151151

152152
Model **C** represents a clear case of over-fitting; the training accuracy is very high but the test accuracy isn't anywhere near as high. This distinction is subjective, but comes from knowledge of your problem and data, and what magnitudes of error are acceptable.
153153

154+
## Classification & regression
155+
156+
Classification and regression are the most common types of machine learning tasks. Both are types 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-create-portal-experiments.md#featurization).
157+
158+
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. Learn more and see an example of [classification with automated machine learning](tutorial-train-models-with-aml.md).
159+
160+
Different from classification where predicted output values are categorical, regression models predict numerical output values based on independent predictors. In regression, the objective is to help establish the relationship among those independent predictor variables by estimating how one variable impacts the others. For example, automobile price based on features like, gas mileage, safety rating, etc. Learn more and see an example of [regression with automated machine learning](tutorial-auto-train-models.md).
161+
154162
## Time-series forecasting
155163

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

0 commit comments

Comments
 (0)