reading-notes

Module 2 - Microsoft Azure AI Fundamentals: Explore visual tools for machine learning

Use Automated Machine Learning in Azure Machine Learning

Types of machine learning

There are two general approaches to machine learning, supervised and unsupervised machine learning. In both approaches, you train a model to make predictions.

The supervised machine learning approach requires you to start with a dataset with known label values:

The unsupervised machine learning approach starts with a dataset without known label values.

What is Azure Machine Learning studio?

Azure Machine Learning is a cloud-based service that helps simplify some of the tasks it takes to prepare data, train a model, and deploy a predictive service.

To use Azure Machine Learning, you first create a workspace resource in your Azure subscription. You can then use this workspace to manage data, compute resources, code, models, and other artifacts related to your machine learning workloads.

Azure Machine Learning studio is a web portal for machine learning solutions in Azure. It includes a wide range of features and capabilities that help data scientists prepare data, train models, publish predictive services, and monitor their usage. There are four kinds of compute resource you can create:

What is Azure Automated Machine Learning?

Azure Machine Learning includes an automated machine learning capability that automatically tries multiple pre-processing techniques and model-training algorithms in parallel.

You can create an automated machine learning job in Azure Machine Learning studio.

Create job

You can configure multiple settings for your job before starting an automated machine learning run. The run configuration provides the information needed to specify your training script, compute target, and Azure ML environment in your run configuration and run a training job.

Configure jobs

Understand the AutoML process

You can think of the steps in a machine learning process as:


Summary

In this module, you learned how to:

Source: Microsoft Learn