SlideShare a Scribd company logo
Machine Learning
PPT made By : Swati Tripathi
What is
Machine Learning (M.L.) ?
Machine learning is an application of artificial
intelligence (AI) which gives devices the ability to
learn from their experiences and improve their self
without doing any coding
COMPUTER
COMPUTER
Data
Data
Output
Program
Output
Program
Traditional Programming
Machine Learning
OTHER
DEFINITIONS
OF ML
Machine learning refers to
a class of computer algorithms
that learn from examples
rather than being explicitly
programmed to perform a task.
Machine learning is a field which
focuses on the use of data and
algorithms to imitate the way
that humans learn, gradually
improving its accuracy.
Machine learning is a field of
study that looks at using
computational algorithms to
turn empirical data into
usable models.
Want to detect spam?
Want to forecast stocks?
Want to find out user
preferences?
Want your computer to
recognize you in group photos?
All the answers can be obtained
by using the power of ML.
Supervised Unsupervised
Semi-supervised Reinforcement
Types of
Machine
Learning
Supervised
• In Supervised learning, you train the machine using
data which is well "labeled."
• It means data is already tagged with the correct
answer.
• It can be compared to learning which takes place in
the presence of a supervisor or a teacher.
• A supervised learning algorithm learns from labeled
training data, helps you to predict outcomes for
unforeseen data.
• One disadvantage of this learning method is that the
dataset has to be hand-labeled either by a Machine
Learning Engineer or a Data Scientist. This is a
very costly process, especially when dealing with
large volumes of data.
Unsupervised
• Unsupervised Learning is a machine
learning technique in which the users do
not need to supervise the model.
• Instead, it allows the model to work on its
own to discover patterns and information
that was previously undetected.
• It mainly deals with the unlabeled data.
• Unsupervised learning problems are
grouped into clustering and association
problems.
• The most basic disadvantage of
any Unsupervised Learning is that
it’s application spectrum is limited.
Semi-supervised
• Semi-supervised learning is the type of
machine learning that uses a combination of a
small amount of labeled data and a large
amount of unlabeled data to train models.
Intuitively, one may imagine the three types of
learning algorithms as :
• Supervised learning where a student is under
the supervision of a teacher at both home
and school.
• Unsupervised learning where a student has to
figure out a concept himself.
• Semi-Supervised learning where a teacher
teaches a few concepts in class and gives
questions as homework which are based on
similar concepts.
Reinforcement
• Reinforcement learning is the training of machine
learning models to make a sequence of decisions.
• In this approach, machine learning models are trained to
make a series of decisions based on the rewards and
feedback they receive for their actions.
• The machine learns to achieve a goal in complex and
uncertain situations and is rewarded each time it
achieves it during the learning period.
• Reinforcement learning is different from supervised
learning in the sense that there is no answer available, so
the reinforcement agent decides the steps to perform a
task.
• The machine learns from its own experiences when there
is no training data set present.
Based On Supervised
machine learning
Unsupervised
machine learning
Input Data Algorithms are
trained using
labeled data.
Algorithms are
used against
data which is not
labelled
Computational
Complexity
Supervised
learning is a
simpler method.
Unsupervised
learning is
computationally
complex
Accuracy Highly accurate
and trustworthy
method.
Less accurate
and trustworthy
method.
The goal of machine learning is to
develop methods that can automatically
detect patterns in data, and then to use
the uncovered patterns to predict
future data or other outcomes of
interest.
-- Kevin P. Murphy
ML key terms
that you must
know!
Features
• Features are the fields used as input.
• A feature is one column of the data in your
input set.
• For instance, if you're trying to predict the
type of pet someone will choose, your input
features might include age, home region, family
income, etc.
• Feature means property of your training data.
• A feature is the input you have fed to the
model or system.
• The value of x variable in simple linear
regression are the features.
Label
• The output you get from your model
after training is called a label.
• A label is the thing we're predicting.
• For example the value of y variable in
simple linear regression model is the
label.
• Suppose you give your model data like
a person’s age, height, hair length and
then your model predicts whether the
person is male or female. Then male or
female is called the label.
Features Label
Tabular data to predict whether car is stolen or not?
Model
• A model is the relationship between features and the
label.
• An ML model is a mathematical model that generates
predictions by finding patterns in your data.
• ML Models generate predictions using the patterns
extracted from the input data.
• A model represents what was learned by a machine
learning algorithm.
• The model is the “thing” that is saved after running
a machine learning algorithm on training data and
represents the rules, numbers, and any other
algorithm-specific data structures required to make
predictions.
Data
ML
Algorithm
ML Model
1. Data
collection
2. Data
preparation
3. Choose a
ML model
4. Train
the model
5. Evaluate
the model
6. Parameter
tuning
7. Make
predictions
Steps in ML
1. Data
collection
Data collection is the process
of gathering and measuring information
from countless different sources.
This is a critical first step that involves
gathering data from various sources
such as databases, files, and external
repositories.
Before starting the data collection
process, it’s important to articulate the
problem you want to solve with an ML
model.
2. Data
Preparation
Data preparation/pre-processing techniques
generally refer to the addition, deletion, or
transformation of training set data.
Since the collected data may be in an undesired
format, unorganized, or extremely large, further
steps are needed to enhance its quality. The
three common steps for preprocessing data are
formatting, cleaning, and sampling.
Data preparation (also referred to as
“data preprocessing”) is the process of
transforming raw data so that data scientists and
analysts can run it through machine
learning algorithms to uncover insights or make
predictions.
3. Choose a
ML model
For different purpose, different ML
models are available. So it depends on
the need that which ML model must be
selected.
The choice of ML model to be selected
depends on many factors like the
problem statement and the kind of
output you want, type and size of the
data, the available computational time,
number of features, and observations in
the data, etc.
4. Train the
model The process of training an ML model involves providing an
ML algorithm (that is, the learning algorithm) with
training data to learn from.
Let's say that you want to train an ML model to predict if
an email is spam or not spam.
You would provide ML model with training data that
contains emails for which you know the target (that is, a
label that tells whether an email is spam or not spam).
Then the model should be trained by using this data,
resulting in a model that attempts to predict whether
new email will be spam or not spam.
5. Evaluate
the model
Model evaluation is a method of assessing the
correctness of models on test data. The test data
consists of data points that have not been seen by
the model before.
There are two methods of evaluating models in data
science, Hold-Out and Cross-Validation.
To avoid overfitting, both methods use a test set
(not seen by the model) to evaluate model
performance.
6. Parameter
Tuning
Each model has its own sets of parameters that
need to be tuned to get optimal output.
For every model, our goal is to minimize the error
or say to have predictions as close as possible to
actual values. This is one of the cores or say the
major objective of hyperparameter tuning.
There are following three approaches to
Hyperparameter tuning:
•Manual Search
•Random Search
•Grid Search
7. Make
predictions
“Prediction” refers to the output of
an algorithm after it has been trained on a
historical dataset.
Machine learning has two main goals:
prediction and inference.
After you have a model, you can use that model to
generate predictions which means to give your
model the inputs it has never seen before and
obtain the answer the model has predicted.
In addition to making predictions on new data, you
can use machine-learning models to better
understand the relationships between the input
features and the output target which is known as
inference.
•Traffic Alerts
•Social Media
•Transportation and Commuting
•Products Recommendations
•Virtual Personal Assistants
•Self Driving Cars
•Dynamic Pricing
•Google Translate
•Online Video Streaming
•Fraud Detection
Applications
Of
ML
Thank you for reading till end!
Hope the ppt was helpful.
PPT is made by Swati Tripathi
Follow me on SlideShare
for more PPT like this.

More Related Content

PPTX
Machine learning ppt
PPTX
Introduction to Machine Learning
PPTX
Machine Learning
PPTX
Machine Learning ppt.pptx
PDF
The fundamentals of Machine Learning
PPTX
Machine Learning
PPTX
ARTIFICIAL INTELLIGENCE BASIC PPT
PPT
Machine learning
Machine learning ppt
Introduction to Machine Learning
Machine Learning
Machine Learning ppt.pptx
The fundamentals of Machine Learning
Machine Learning
ARTIFICIAL INTELLIGENCE BASIC PPT
Machine learning

What's hot (20)

PPTX
Types of Machine Learning
PPTX
Machine learning seminar ppt
PPT
Machine Learning
PPTX
Intro/Overview on Machine Learning Presentation
PPTX
Supervised and unsupervised learning
PDF
Data preprocessing using Machine Learning
PDF
Machine Learning: Introduction to Neural Networks
PPTX
INTRODUCTION TO MACHINE LEARNING.pptx
PPTX
Machine Can Think
PPTX
Overfitting & Underfitting
PPTX
Classification and Regression
PPTX
supervised learning
PPTX
Knowledge representation In Artificial Intelligence
PPTX
Machine Learning Algorithms | Machine Learning Tutorial | Data Science Algori...
PPT
Machine Learning
PDF
Support Vector Machines ( SVM )
PPTX
Data mining Measuring similarity and desimilarity
PPT
Ontology engineering
PDF
An introduction to Machine Learning
PPTX
Introduction to Machine Learning
Types of Machine Learning
Machine learning seminar ppt
Machine Learning
Intro/Overview on Machine Learning Presentation
Supervised and unsupervised learning
Data preprocessing using Machine Learning
Machine Learning: Introduction to Neural Networks
INTRODUCTION TO MACHINE LEARNING.pptx
Machine Can Think
Overfitting & Underfitting
Classification and Regression
supervised learning
Knowledge representation In Artificial Intelligence
Machine Learning Algorithms | Machine Learning Tutorial | Data Science Algori...
Machine Learning
Support Vector Machines ( SVM )
Data mining Measuring similarity and desimilarity
Ontology engineering
An introduction to Machine Learning
Introduction to Machine Learning
Ad

Similar to Introduction to ML (Machine Learning) (20)

PPTX
Machine Learning_overview_presentation.pptx
PDF
ML_Module_1.pdf
PPTX
Lecture 1.pptxgggggggggggggggggggggggggggggggggggggggggggg
PPTX
It's Machine Learning Basics -- For You!
PPTX
Doctor, Ismail ishengoma PowerPointL3.pptx
PDF
Supervised learning techniques and applications
PPTX
machine learning introduction notes foRr
PDF
Introduction to Artificial Intelligence_ Lec 6
PPTX
ECT463 Machine Learning Module 1 KTU 2019 Scheme.pptx
PPTX
Statistical Machine Learning Lecture notes
PPTX
Session 17-18 machine learning very important and good type student favour.pptx
PPTX
unit 1.2 supervised learning.pptx
PDF
Machine Learning_Unit 2_Full.ppt.pdf
PPTX
Machine Learning Essentials and Fundamentals.pptx
PPTX
MACHINE LEARNING PRESENTATION (ARTIFICIAL INTELLIGENCE)
PPTX
Machine Learning Contents.pptx
PDF
Machine Learning - Deep Learning
PDF
Introduction to Machine Learning Techniques
PPTX
Chapter 05 Machine Learning.pptx
PPTX
Machine Learning Terminologies
Machine Learning_overview_presentation.pptx
ML_Module_1.pdf
Lecture 1.pptxgggggggggggggggggggggggggggggggggggggggggggg
It's Machine Learning Basics -- For You!
Doctor, Ismail ishengoma PowerPointL3.pptx
Supervised learning techniques and applications
machine learning introduction notes foRr
Introduction to Artificial Intelligence_ Lec 6
ECT463 Machine Learning Module 1 KTU 2019 Scheme.pptx
Statistical Machine Learning Lecture notes
Session 17-18 machine learning very important and good type student favour.pptx
unit 1.2 supervised learning.pptx
Machine Learning_Unit 2_Full.ppt.pdf
Machine Learning Essentials and Fundamentals.pptx
MACHINE LEARNING PRESENTATION (ARTIFICIAL INTELLIGENCE)
Machine Learning Contents.pptx
Machine Learning - Deep Learning
Introduction to Machine Learning Techniques
Chapter 05 Machine Learning.pptx
Machine Learning Terminologies
Ad

More from SwatiTripathi44 (6)

PPTX
Interpersonal and soft skills assessment and development
PPTX
Power BI : A Detailed Discussion
PPTX
What is culture? Sociology's perspective | Detailed Discussion
PPTX
Covid-19 : Emotional Well Being and Coping during Crisis
PPTX
Journey of OYO's CEO : Ritesh Agarwal
PPTX
Society Vs Community : Sociology Perspective
Interpersonal and soft skills assessment and development
Power BI : A Detailed Discussion
What is culture? Sociology's perspective | Detailed Discussion
Covid-19 : Emotional Well Being and Coping during Crisis
Journey of OYO's CEO : Ritesh Agarwal
Society Vs Community : Sociology Perspective

Recently uploaded (20)

PPTX
MYSQL Presentation for SQL database connectivity
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PPT
Teaching material agriculture food technology
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Electronic commerce courselecture one. Pdf
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Approach and Philosophy of On baking technology
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Empathic Computing: Creating Shared Understanding
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
cuic standard and advanced reporting.pdf
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
MYSQL Presentation for SQL database connectivity
Building Integrated photovoltaic BIPV_UPV.pdf
Teaching material agriculture food technology
Assigned Numbers - 2025 - Bluetooth® Document
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Spectral efficient network and resource selection model in 5G networks
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Electronic commerce courselecture one. Pdf
Review of recent advances in non-invasive hemoglobin estimation
Approach and Philosophy of On baking technology
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Unlocking AI with Model Context Protocol (MCP)
Per capita expenditure prediction using model stacking based on satellite ima...
The Rise and Fall of 3GPP – Time for a Sabbatical?
Empathic Computing: Creating Shared Understanding
Advanced methodologies resolving dimensionality complications for autism neur...
Dropbox Q2 2025 Financial Results & Investor Presentation
cuic standard and advanced reporting.pdf
20250228 LYD VKU AI Blended-Learning.pptx

Introduction to ML (Machine Learning)

  • 1. Machine Learning PPT made By : Swati Tripathi
  • 2. What is Machine Learning (M.L.) ? Machine learning is an application of artificial intelligence (AI) which gives devices the ability to learn from their experiences and improve their self without doing any coding
  • 5. Machine learning refers to a class of computer algorithms that learn from examples rather than being explicitly programmed to perform a task.
  • 6. Machine learning is a field which focuses on the use of data and algorithms to imitate the way that humans learn, gradually improving its accuracy.
  • 7. Machine learning is a field of study that looks at using computational algorithms to turn empirical data into usable models.
  • 8. Want to detect spam? Want to forecast stocks? Want to find out user preferences? Want your computer to recognize you in group photos? All the answers can be obtained by using the power of ML.
  • 10. Supervised • In Supervised learning, you train the machine using data which is well "labeled." • It means data is already tagged with the correct answer. • It can be compared to learning which takes place in the presence of a supervisor or a teacher. • A supervised learning algorithm learns from labeled training data, helps you to predict outcomes for unforeseen data. • One disadvantage of this learning method is that the dataset has to be hand-labeled either by a Machine Learning Engineer or a Data Scientist. This is a very costly process, especially when dealing with large volumes of data.
  • 11. Unsupervised • Unsupervised Learning is a machine learning technique in which the users do not need to supervise the model. • Instead, it allows the model to work on its own to discover patterns and information that was previously undetected. • It mainly deals with the unlabeled data. • Unsupervised learning problems are grouped into clustering and association problems. • The most basic disadvantage of any Unsupervised Learning is that it’s application spectrum is limited.
  • 12. Semi-supervised • Semi-supervised learning is the type of machine learning that uses a combination of a small amount of labeled data and a large amount of unlabeled data to train models. Intuitively, one may imagine the three types of learning algorithms as : • Supervised learning where a student is under the supervision of a teacher at both home and school. • Unsupervised learning where a student has to figure out a concept himself. • Semi-Supervised learning where a teacher teaches a few concepts in class and gives questions as homework which are based on similar concepts.
  • 13. Reinforcement • Reinforcement learning is the training of machine learning models to make a sequence of decisions. • In this approach, machine learning models are trained to make a series of decisions based on the rewards and feedback they receive for their actions. • The machine learns to achieve a goal in complex and uncertain situations and is rewarded each time it achieves it during the learning period. • Reinforcement learning is different from supervised learning in the sense that there is no answer available, so the reinforcement agent decides the steps to perform a task. • The machine learns from its own experiences when there is no training data set present.
  • 14. Based On Supervised machine learning Unsupervised machine learning Input Data Algorithms are trained using labeled data. Algorithms are used against data which is not labelled Computational Complexity Supervised learning is a simpler method. Unsupervised learning is computationally complex Accuracy Highly accurate and trustworthy method. Less accurate and trustworthy method.
  • 15. The goal of machine learning is to develop methods that can automatically detect patterns in data, and then to use the uncovered patterns to predict future data or other outcomes of interest. -- Kevin P. Murphy
  • 16. ML key terms that you must know!
  • 17. Features • Features are the fields used as input. • A feature is one column of the data in your input set. • For instance, if you're trying to predict the type of pet someone will choose, your input features might include age, home region, family income, etc. • Feature means property of your training data. • A feature is the input you have fed to the model or system. • The value of x variable in simple linear regression are the features.
  • 18. Label • The output you get from your model after training is called a label. • A label is the thing we're predicting. • For example the value of y variable in simple linear regression model is the label. • Suppose you give your model data like a person’s age, height, hair length and then your model predicts whether the person is male or female. Then male or female is called the label.
  • 19. Features Label Tabular data to predict whether car is stolen or not?
  • 20. Model • A model is the relationship between features and the label. • An ML model is a mathematical model that generates predictions by finding patterns in your data. • ML Models generate predictions using the patterns extracted from the input data. • A model represents what was learned by a machine learning algorithm. • The model is the “thing” that is saved after running a machine learning algorithm on training data and represents the rules, numbers, and any other algorithm-specific data structures required to make predictions.
  • 22. 1. Data collection 2. Data preparation 3. Choose a ML model 4. Train the model 5. Evaluate the model 6. Parameter tuning 7. Make predictions Steps in ML
  • 23. 1. Data collection Data collection is the process of gathering and measuring information from countless different sources. This is a critical first step that involves gathering data from various sources such as databases, files, and external repositories. Before starting the data collection process, it’s important to articulate the problem you want to solve with an ML model.
  • 24. 2. Data Preparation Data preparation/pre-processing techniques generally refer to the addition, deletion, or transformation of training set data. Since the collected data may be in an undesired format, unorganized, or extremely large, further steps are needed to enhance its quality. The three common steps for preprocessing data are formatting, cleaning, and sampling. Data preparation (also referred to as “data preprocessing”) is the process of transforming raw data so that data scientists and analysts can run it through machine learning algorithms to uncover insights or make predictions.
  • 25. 3. Choose a ML model For different purpose, different ML models are available. So it depends on the need that which ML model must be selected. The choice of ML model to be selected depends on many factors like the problem statement and the kind of output you want, type and size of the data, the available computational time, number of features, and observations in the data, etc.
  • 26. 4. Train the model The process of training an ML model involves providing an ML algorithm (that is, the learning algorithm) with training data to learn from. Let's say that you want to train an ML model to predict if an email is spam or not spam. You would provide ML model with training data that contains emails for which you know the target (that is, a label that tells whether an email is spam or not spam). Then the model should be trained by using this data, resulting in a model that attempts to predict whether new email will be spam or not spam.
  • 27. 5. Evaluate the model Model evaluation is a method of assessing the correctness of models on test data. The test data consists of data points that have not been seen by the model before. There are two methods of evaluating models in data science, Hold-Out and Cross-Validation. To avoid overfitting, both methods use a test set (not seen by the model) to evaluate model performance.
  • 28. 6. Parameter Tuning Each model has its own sets of parameters that need to be tuned to get optimal output. For every model, our goal is to minimize the error or say to have predictions as close as possible to actual values. This is one of the cores or say the major objective of hyperparameter tuning. There are following three approaches to Hyperparameter tuning: •Manual Search •Random Search •Grid Search
  • 29. 7. Make predictions “Prediction” refers to the output of an algorithm after it has been trained on a historical dataset. Machine learning has two main goals: prediction and inference. After you have a model, you can use that model to generate predictions which means to give your model the inputs it has never seen before and obtain the answer the model has predicted. In addition to making predictions on new data, you can use machine-learning models to better understand the relationships between the input features and the output target which is known as inference.
  • 30. •Traffic Alerts •Social Media •Transportation and Commuting •Products Recommendations •Virtual Personal Assistants •Self Driving Cars •Dynamic Pricing •Google Translate •Online Video Streaming •Fraud Detection Applications Of ML
  • 31. Thank you for reading till end! Hope the ppt was helpful. PPT is made by Swati Tripathi Follow me on SlideShare for more PPT like this.