SlideShare una empresa de Scribd logo
1 de 10
Descargar para leer sin conexión
First presentation of artificial intelligence Page 1
Topic: A brief introduction to supervised learning, its types, advantages &
disadvantages which case we should use it and which case is not used.
Group members:
Ali zafar roll #: 19
M. Zaman roll # 34 (retainer)
Asif Ali
First presentation of artificial intelligence Page 2
What is the machine learning?
Machine learning is an application of artificial intelligence (AI) that provides systems the
ability to automatically learn and improve from experience without being explicitly
programmed. Machine learning focuses on the development of computer programs that can
access data and use it learn from them. The primary aim is to allow the computers learn
automatically without human intervention and adjust actions accordingly.
First presentation of artificial intelligence Page 3
Supervised learning
First presentation of artificial intelligence Page 4
• Supervised learning is the learning in which we teach or train the machine using
data which is well labeled. A supervised learning algorithm analyze training data
and produces an inferred function which can be used for mapping new examples.
• The correct classes of the training data are known.
Here the human experts acts as the teacher where we feed the computer with training
data containing the input/predictors and we show it the correct answers (output) and
from the data the computer should be able to learn the patterns.
 we can predict the output values for new data based relationships which it learned
from the previous data sets.
First presentation of artificial intelligence Page 5
First presentation of artificial intelligence Page 6
Supervised learning uses classification and regression techniques to develop predictive models.
Classification techniques
When the output variable is categorical i.e with 2 or more classes (yes/no , true/false”) we make use
of classification. Classification is the task of predicting a discrete class label.
Predict discrete responses—for example, whether an email is genuine or spam,
or whether a tumor is cancerous or benign. Classification models classify input
data into categories. Typical applications include medical imaging, speech
recognition, and credit scoring.
Use classification if your data can be tagged, categorized, or separated into
specific groups or classes. For example, applications for hand-writing recognition
First presentation of artificial intelligence Page 7
use classification to recognize letters and numbers. In image processing and
computer vision, unsupervised pattern recognition techniques are used for object
detection and image segmentation.
Common algorithms for performing classification include support vector machine
(SVM), boosted and bagged decision trees, k-nearest neighbor, Naïve
Bayes, discriminant analysis, logistic regression, and neural networks.
Regression techniques
Relations hip between two or more variables where a change in one variable is associated with a
change in other variable. Regression is the task of predicting a continuous quantity.
Predict continuous responses—for example, changes in temperature or
fluctuations in power demand. Typical applications include electricity load
forecasting and algorithmic trading.
Use regression techniques if you are working with a data range or if the nature of
your response is a real number, such as temperature or the time until failure for a
piece of equipment.
Common regression algorithms include linear model, nonlinear
model, regularization, stepwise regression, boosted and bagged decision
trees, neural networks, and adaptive neuro-fuzzy learning.
First presentation of artificial intelligence Page 8
Supervised learning algorithms
 Nearest Neighbor
 Naive Bayes
 Decision Trees
 Linear Regression
 Support Vector Machines (SVM)
 Neural Networks
Applications of supervised learning
First presentation of artificial intelligence Page 9
How Do You Decide Which Machine
Learning Algorithm to Use?
Choosing the right algorithm can seem overwhelming—there are dozens of
supervised and unsupervised machine learning algorithms, and each takes a
different approach to learning.
There is no best method or one size fits all. Finding the right algorithm is partly
just trial and error—even highly experienced data scientists can’t tell whether an
algorithm will work without trying it out. But algorithm selection also depends on
the size and type of data you’re working with, the insights you want to get from
the data, and how those insights will be used.
.
Here are some guidelines on choosing between supervised and unsupervised
machine learning:
 Choose supervised learning if you need to train a model to make a
prediction--for example, the future value of a continuous variable, such
as temperature or a stock price, or a classification—for example, identify
makes of cars from webcam video footage.
 Choose unsupervised learning if you need to explore your data and
want to train a model to find a good internal representation, such as
splitting data up into clusters.
First presentation of artificial intelligence Page 10
Advantages
1- You can get very specific about the definition of the classes, which means that you
can train the classifier in a way which has a perfect decision boundary to distinguish
different classes accurately.
2- You can specifically determine how many classes you want to have.
3- After training, you don’t necessarily need to keep the training examples in a memory.
You can keep the decision boundary as a mathematical formula and that would
be enough for classifying future inputs.
Disadvantages:
1- Your decision boundary might be overtrained. Which means that if your training
set is not including some examples that you want to have in a class, when you use those
examples after training, you might not get the correct class label.
2- When this an input which is not from any of the classes in reality, then it might get
a wrong class label after classification.
3- You have to select a lot of good examples from each class while you are training the
classifier. If you consider classification of big data that can be a real challenge.
4- Training needs a lot of computation time, so do the classification.
5- You might need to use a cloud and leave the training algorithm work over a night or
nights before obtaining a good decision boundary model.

Más contenido relacionado

La actualidad más candente

DESIGN AND ANALYSIS OF ALGORITHMS
DESIGN AND ANALYSIS OF ALGORITHMSDESIGN AND ANALYSIS OF ALGORITHMS
DESIGN AND ANALYSIS OF ALGORITHMS
Gayathri Gaayu
 

La actualidad más candente (20)

Intro/Overview on Machine Learning Presentation -2
Intro/Overview on Machine Learning Presentation -2Intro/Overview on Machine Learning Presentation -2
Intro/Overview on Machine Learning Presentation -2
 
DESIGN AND ANALYSIS OF ALGORITHMS
DESIGN AND ANALYSIS OF ALGORITHMSDESIGN AND ANALYSIS OF ALGORITHMS
DESIGN AND ANALYSIS OF ALGORITHMS
 
Machine learning
Machine learningMachine learning
Machine learning
 
Brain tumor detection using image segmentation ppt
Brain tumor detection using image segmentation pptBrain tumor detection using image segmentation ppt
Brain tumor detection using image segmentation ppt
 
Inheritance in c++
Inheritance in c++Inheritance in c++
Inheritance in c++
 
Machine learning ppt
Machine learning ppt Machine learning ppt
Machine learning ppt
 
K mean-clustering
K mean-clusteringK mean-clustering
K mean-clustering
 
C++ classes tutorials
C++ classes tutorialsC++ classes tutorials
C++ classes tutorials
 
Machine learning
Machine learningMachine learning
Machine learning
 
Machine learning
Machine learningMachine learning
Machine learning
 
Boosting - An Ensemble Machine Learning Method
Boosting - An Ensemble Machine Learning MethodBoosting - An Ensemble Machine Learning Method
Boosting - An Ensemble Machine Learning Method
 
Machine Learning ppt
Machine Learning pptMachine Learning ppt
Machine Learning ppt
 
Deep Learning With Neural Networks
Deep Learning With Neural NetworksDeep Learning With Neural Networks
Deep Learning With Neural Networks
 
Decision Tree Learning
Decision Tree LearningDecision Tree Learning
Decision Tree Learning
 
State Space Search in ai
State Space Search in aiState Space Search in ai
State Space Search in ai
 
Game Playing in Artificial Intelligence
Game Playing in Artificial IntelligenceGame Playing in Artificial Intelligence
Game Playing in Artificial Intelligence
 
oops concept in java | object oriented programming in java
oops concept in java | object oriented programming in javaoops concept in java | object oriented programming in java
oops concept in java | object oriented programming in java
 
Feedforward neural network
Feedforward neural networkFeedforward neural network
Feedforward neural network
 
Machine learning Presentation
Machine learning PresentationMachine learning Presentation
Machine learning Presentation
 
Classification and Clustering
Classification and ClusteringClassification and Clustering
Classification and Clustering
 

Similar a detailed Presentation on supervised learning

Similar a detailed Presentation on supervised learning (20)

Supervised learning techniques and applications
Supervised learning techniques and applicationsSupervised learning techniques and applications
Supervised learning techniques and applications
 
introduction to machine learning
introduction to machine learningintroduction to machine learning
introduction to machine learning
 
Introduction to machine learning
Introduction to machine learningIntroduction to machine learning
Introduction to machine learning
 
what-is-machine-learning-and-its-importance-in-todays-world.pdf
what-is-machine-learning-and-its-importance-in-todays-world.pdfwhat-is-machine-learning-and-its-importance-in-todays-world.pdf
what-is-machine-learning-and-its-importance-in-todays-world.pdf
 
Machine Learning Tutorial for Beginners
Machine Learning Tutorial for BeginnersMachine Learning Tutorial for Beginners
Machine Learning Tutorial for Beginners
 
Machine Learning - Deep Learning
Machine Learning - Deep LearningMachine Learning - Deep Learning
Machine Learning - Deep Learning
 
machine learning.docx
machine learning.docxmachine learning.docx
machine learning.docx
 
Applied Artificial Intelligence Unit 3 Semester 3 MSc IT Part 2 Mumbai Univer...
Applied Artificial Intelligence Unit 3 Semester 3 MSc IT Part 2 Mumbai Univer...Applied Artificial Intelligence Unit 3 Semester 3 MSc IT Part 2 Mumbai Univer...
Applied Artificial Intelligence Unit 3 Semester 3 MSc IT Part 2 Mumbai Univer...
 
Machine Learning_Unit 2_Full.ppt.pdf
Machine Learning_Unit 2_Full.ppt.pdfMachine Learning_Unit 2_Full.ppt.pdf
Machine Learning_Unit 2_Full.ppt.pdf
 
Machine Learning by Rj
Machine Learning by RjMachine Learning by Rj
Machine Learning by Rj
 
ML_Module_1.pdf
ML_Module_1.pdfML_Module_1.pdf
ML_Module_1.pdf
 
An Introduction to Machine Learning
An Introduction to Machine LearningAn Introduction to Machine Learning
An Introduction to Machine Learning
 
Introduction to Machine Learning
Introduction to Machine LearningIntroduction to Machine Learning
Introduction to Machine Learning
 
Machine Learning Landscape
Machine Learning LandscapeMachine Learning Landscape
Machine Learning Landscape
 
Machine Learning Contents.pptx
Machine Learning Contents.pptxMachine Learning Contents.pptx
Machine Learning Contents.pptx
 
Machine learning
Machine learningMachine learning
Machine learning
 
Machine Learning Interview Questions
Machine Learning Interview QuestionsMachine Learning Interview Questions
Machine Learning Interview Questions
 
Introduction To Machine Learning
Introduction To Machine LearningIntroduction To Machine Learning
Introduction To Machine Learning
 
machine learning
machine learningmachine learning
machine learning
 
Machine Learning Interview Questions and Answers
Machine Learning Interview Questions and AnswersMachine Learning Interview Questions and Answers
Machine Learning Interview Questions and Answers
 

Último

1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
SoniaTolstoy
 

Último (20)

APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 

detailed Presentation on supervised learning

  • 1. First presentation of artificial intelligence Page 1 Topic: A brief introduction to supervised learning, its types, advantages & disadvantages which case we should use it and which case is not used. Group members: Ali zafar roll #: 19 M. Zaman roll # 34 (retainer) Asif Ali
  • 2. First presentation of artificial intelligence Page 2 What is the machine learning? Machine learning is an application of artificial intelligence (AI) that provides systems the ability to automatically learn and improve from experience without being explicitly programmed. Machine learning focuses on the development of computer programs that can access data and use it learn from them. The primary aim is to allow the computers learn automatically without human intervention and adjust actions accordingly.
  • 3. First presentation of artificial intelligence Page 3 Supervised learning
  • 4. First presentation of artificial intelligence Page 4 • Supervised learning is the learning in which we teach or train the machine using data which is well labeled. A supervised learning algorithm analyze training data and produces an inferred function which can be used for mapping new examples. • The correct classes of the training data are known. Here the human experts acts as the teacher where we feed the computer with training data containing the input/predictors and we show it the correct answers (output) and from the data the computer should be able to learn the patterns.  we can predict the output values for new data based relationships which it learned from the previous data sets.
  • 5. First presentation of artificial intelligence Page 5
  • 6. First presentation of artificial intelligence Page 6 Supervised learning uses classification and regression techniques to develop predictive models. Classification techniques When the output variable is categorical i.e with 2 or more classes (yes/no , true/false”) we make use of classification. Classification is the task of predicting a discrete class label. Predict discrete responses—for example, whether an email is genuine or spam, or whether a tumor is cancerous or benign. Classification models classify input data into categories. Typical applications include medical imaging, speech recognition, and credit scoring. Use classification if your data can be tagged, categorized, or separated into specific groups or classes. For example, applications for hand-writing recognition
  • 7. First presentation of artificial intelligence Page 7 use classification to recognize letters and numbers. In image processing and computer vision, unsupervised pattern recognition techniques are used for object detection and image segmentation. Common algorithms for performing classification include support vector machine (SVM), boosted and bagged decision trees, k-nearest neighbor, Naïve Bayes, discriminant analysis, logistic regression, and neural networks. Regression techniques Relations hip between two or more variables where a change in one variable is associated with a change in other variable. Regression is the task of predicting a continuous quantity. Predict continuous responses—for example, changes in temperature or fluctuations in power demand. Typical applications include electricity load forecasting and algorithmic trading. Use regression techniques if you are working with a data range or if the nature of your response is a real number, such as temperature or the time until failure for a piece of equipment. Common regression algorithms include linear model, nonlinear model, regularization, stepwise regression, boosted and bagged decision trees, neural networks, and adaptive neuro-fuzzy learning.
  • 8. First presentation of artificial intelligence Page 8 Supervised learning algorithms  Nearest Neighbor  Naive Bayes  Decision Trees  Linear Regression  Support Vector Machines (SVM)  Neural Networks Applications of supervised learning
  • 9. First presentation of artificial intelligence Page 9 How Do You Decide Which Machine Learning Algorithm to Use? Choosing the right algorithm can seem overwhelming—there are dozens of supervised and unsupervised machine learning algorithms, and each takes a different approach to learning. There is no best method or one size fits all. Finding the right algorithm is partly just trial and error—even highly experienced data scientists can’t tell whether an algorithm will work without trying it out. But algorithm selection also depends on the size and type of data you’re working with, the insights you want to get from the data, and how those insights will be used. . Here are some guidelines on choosing between supervised and unsupervised machine learning:  Choose supervised learning if you need to train a model to make a prediction--for example, the future value of a continuous variable, such as temperature or a stock price, or a classification—for example, identify makes of cars from webcam video footage.  Choose unsupervised learning if you need to explore your data and want to train a model to find a good internal representation, such as splitting data up into clusters.
  • 10. First presentation of artificial intelligence Page 10 Advantages 1- You can get very specific about the definition of the classes, which means that you can train the classifier in a way which has a perfect decision boundary to distinguish different classes accurately. 2- You can specifically determine how many classes you want to have. 3- After training, you don’t necessarily need to keep the training examples in a memory. You can keep the decision boundary as a mathematical formula and that would be enough for classifying future inputs. Disadvantages: 1- Your decision boundary might be overtrained. Which means that if your training set is not including some examples that you want to have in a class, when you use those examples after training, you might not get the correct class label. 2- When this an input which is not from any of the classes in reality, then it might get a wrong class label after classification. 3- You have to select a lot of good examples from each class while you are training the classifier. If you consider classification of big data that can be a real challenge. 4- Training needs a lot of computation time, so do the classification. 5- You might need to use a cloud and leave the training algorithm work over a night or nights before obtaining a good decision boundary model.