Skip to content

Commit 06be504

Browse files
committedSep 28, 2021
new images + edits
1 parent 3ebde2a commit 06be504

File tree

2 files changed

+9
-14
lines changed

2 files changed

+9
-14
lines changed
 

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

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -123,30 +123,25 @@ See examples of regression and automated machine learning for predictions in the
123123

124124
### Computer vision
125125

126-
Automated ML for images adds support for computer vision tasks, which allows you to easily generate models trained on image data for scenarios like image classification, object detection and instance segmentation. You can seamlessly integrate with the [Azure Machine Learning data labeling]() capability, and use this labeled data for generating image models. They can optimize model performance by specifying the model algorithm and tuning the hyperparameters. The resulting model can then be downloaded or deployed as a web service in Azure ML and can be operationalized at scale, leveraging Azure Machine Learning [MLOps](concept-model-management-and-deployment.md) and [ML Pipelines](concept-ml-pipelines.md) capabilities.
126+
Customers across various industries are looking to leverage machine learning to build models that can process image data. Typical manual methods for building computer vision models can involve a tedious process of iteratively finding the right set of model algorithms and hyperparameters, requiring significant data scientist time and effort.
127127

128-
Customers across various industries are looking to leverage machine learning to build models that can process image data. Applications range from image classification of fashion photos to PPE detection in industrial environments. Typical manual methods for building computer vision models can involve a tedious process of iteratively finding the right set of model algorithms and hyperparameters, requiring significant data scientist time and effort.
128+
Automated ML for images adds support for computer vision tasks, which allows you to easily generate models trained on image data for scenarios like image classification, object detection and instance segmentation. You can seamlessly integrate with the [Azure Machine Learning data labeling](how-to-create-labeling-projects.md) capability, and use this labeled data for generating image models. They can optimize model performance by specifying the model algorithm and tuning the hyperparameters. The resulting model can then be downloaded or deployed as a web service in Azure ML and can be operationalized at scale, leveraging Azure Machine Learning [MLOps](concept-model-management-and-deployment.md) and [ML Pipelines](concept-ml-pipelines.md) capabilities.
129129

130-
With AutoML for Images, Azure ML customers can easily build models trained on image data, without writing any training code. They can seamlessly integrate with Azure ML's Data Labeling capability and use this labeled data for generating image models. They can optimize model performance by specifying the model algorithm and tuning the hyperparameters. The resulting model can then be downloaded or deployed as a web service in Azure ML and can be operationalized at scale, leveraging AzureML [MLOps](concept-model-management-and-deployment.md) and [ML Pipelines](concept-ml-pipelines.md) capabilities.
130+
Authoring AutoML models for vision tasks is supported via the Azure ML Python SDK. The resulting experimentation runs, models and outputs can be accessed from the Azure Machine Learning studio UI.
131131

132-
Authoring AutoML models for vision tasks is supported via the Azure ML Python SDK. The resulting experimentation runs, models and outputs can be accessed from the Azure ML Studio UI.
133-
134-
Learn more about AutoML for Images capabilities in this how-to guide: ['How to auto-train image models'](how-to-auto-train-image-models)
132+
Learn how to [set up AutoML training for computer vision models'](how-to-auto-train-image-models.md).
135133

136134
AutoML for Images supports the following computer vision tasks -
137135

138-
![Computer Vision Tasks](./media/ComputerVisionTasks.jpg)
136+
![Computer vision tasks examples. Image from: http://cs231n.stanford.edu/slides/2021/lecture_15.pdf ](./media/concept-automated-ml/automl-computer-vision-tasks.png)
139137

140-
[Image from: http://cs231n.stanford.edu/slides/2021/lecture_15.pdf]
141138

142139
Task | Description
143140
----|----
144-
Multi-class Image Classification | Tasks where an image is classified with only a single label from a set of classes - e.g. each image is classified as either an image of a 'cat' or a 'dog' or a 'duck'
145-
Multi-label Image Classification | Tasks where an image could have one or more labels from a set of labels - e.g. an image could be labeled with both 'cat' and 'dog'
146-
Object Detection| Tasks to identify objects in an image and locate each object with a bounding box e.g. locate all dogs and cats in an image and draw a bounding box around each.
147-
Instance Segmentation |
148-
Tasks to identify objects in an image at the pixel level, drawing a polygon around each object in the image.
149-
141+
Multi-class image classification | Tasks where an image is classified with only a single label from a set of classes - e.g. each image is classified as either an image of a 'cat' or a 'dog' or a 'duck'
142+
Multi-label image classification | Tasks where an image could have one or more labels from a set of labels - e.g. an image could be labeled with both 'cat' and 'dog'
143+
Object detection| Tasks to identify objects in an image and locate each object with a bounding box e.g. locate all dogs and cats in an image and draw a bounding box around each.
144+
Instance segmentation | Tasks to identify objects in an image at the pixel level, drawing a polygon around each object in the image.
150145

151146
## How automated ML works
152147

Loading

0 commit comments

Comments
 (0)
Please sign in to comment.