0% found this document useful (0 votes)
13 views3 pages

Ai Course1 Chap2

The document provides an overview of Azure Machine Learning (AML), a cloud-based service for training and managing machine learning models. It explains the concepts of machine learning, including supervised and unsupervised approaches, and details the functionalities of Azure Machine-Learning Studio and Automated Machine Learning (AAML). The document also outlines the steps in the machine learning process, from data preparation to model deployment.

Uploaded by

geethanjali5447
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views3 pages

Ai Course1 Chap2

The document provides an overview of Azure Machine Learning (AML), a cloud-based service for training and managing machine learning models. It explains the concepts of machine learning, including supervised and unsupervised approaches, and details the functionalities of Azure Machine-Learning Studio and Automated Machine Learning (AAML). The document also outlines the steps in the machine learning process, from data preparation to model deployment.

Uploaded by

geethanjali5447
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

ARTIFICIAL INTELLIGENCE

2. USE VISUAL TOOLS TO CREATE MACHINE LEARNING MODELS WITH


AZURE MACHINE LEARNING

1. Introduction
• Azure Machine-Learning (AML) is a cloud based service.
• AML can be used to train and manage models.

2. What is Machine-Learning?
• ML uses mathematics & statistics to create a model that can predict unknown values.

• Mathematically, machine-learning is a function (f).


The function (f) operates on one or more features (x) to calculate a predicted-label (y).
i.e. f(x) = y
• The function (f) depends on a no. of factors including
i) Type of model
ii) Algorithm used to train the model

2.1 Types of Machine-Learning


• There are 2 general approaches to machine-learning.
1) Supervised ML and
2) Unsupervised ML
• In both approaches, you train a model to make predictions.
1) Supervised Machine-Learning
• You to start with a dataset with known label-values.
• Two types of tasks are:
i) Regression
• Regression is used to predict a continuous value; like a price or a sales total
ii) Classification
• Classification is used to determine a class-label.
For example,
Binary class-label can classify whether a patient has diabetes or not
Multi-class-labels can classify text as positive, negative, or neutral
2) Unsupervised Machine-Learning
• You to start with a dataset without known label-values.
• Clustering is one type of unsupervised task.
i) Clustering
• Clustering used to determine labels by grouping similar information into label-groups.
• For example, grouping measurements from birds into species.

Course – 1 Azure AI Fundamentals (AI-900)


2-1
ARTIFICIAL INTELLIGENCE
3. What is Azure Machine-Learning Studio?
• AML studio is a web-portal for ML-solutions.
• It includes features that help data-scientists to
 prepare data
 train models
 publish predictive-services

3.1 Azure Machine-Learning Compute


• Compute-targets are cloud-based-resources.
• On these resources, you can run model-training and data exploration processes.
• There are 4 kinds of compute-resource:
i) Compute Instances
• Development workstations that data-scientists can use to work with data and models.
ii) Compute Clusters
• Scalable clusters of virtual-machines for on-demand processing of experiment code.
iii) Inference Clusters
• Deployment targets for predictive-services that use your trained models.
iv) Attached Compute
• Links to existing Azure compute-resources such as Virtual-machines.

Course – 1 Azure AI Fundamentals (AI-900)


2-2
ARTIFICIAL INTELLIGENCE
4. What is Azure Automated Machine-learning (AAML)?
• AAML automatically tries multiple model-training algorithms.
• The AAML can find the best performing supervised ML-model for your data.
• AAML allows you to train models without extensive data science or programming knowledge.

5. Understand the AutoML Process


• The steps in a machine-learning process is as follows:
1) Prepare Data
• Identify the features and label in a dataset.
• Pre-process or clean and transform, the data as needed.
2) Train Model
• Split the data into 2 groups, i) training set and ii) validation set.
i) Train a model using the training data-set.
ii) Test the model for performance using the validation data-set.
• The AAML supports supervised machine-learning models.
• You can use AAML to train models for:
i) Classification (predicting classes)
ii) Regression (predicting numeric values)
3) Evaluate Performance
• Compare how close the model's predictions are to the known labels.
• The difference between the predicted and actual value indicates the amount of error in the model.
4) Deploy a Predictive-Service
• After you train a model, you can deploy the model as an application on a server.
• In AML,
 you can deploy a service to Azure Container Instances (ACI) or
 you can deploy a service to an Azure Kubernetes Service (AKS) cluster.

Course – 1 Azure AI Fundamentals (AI-900)


2-3

You might also like