SlideShare a Scribd company logo
1 of 19
Download to read offline
Different types of Learning
Dr.Ranjitha M ; Kristu Jayanti College
Unit of observation
• By a unit of observation we mean the smallest
entity with measured properties of interest for a
study.
Examples
• A person, an object or a thing
• A time point
• A geographic region
• A measurement
Sometimes, units of observation are combined to
form units such as person-years.
Dr.Ranjitha M ; Kristu Jayanti College
Examples/Instances and features
• Datasets that store the units of observation and their
properties can be imagined as collections of data consisting
of the following:
Examples
• An “example” is an instance of the unit of observation for
which properties have been recorded.
• An “example” is also referred to as an “instance”, or “case”
or “record.” (It may be noted that
the word “example” has been used here in a technical sense.)
Features
• A “feature” is a recorded property or a characteristic of
examples. It is also referred to as “attribute”, or “variable”
or “feature.”
Dr.Ranjitha M ; Kristu Jayanti College
Examples for “examples” and
“features”
1. Cancer detection
Consider the problem of developing an algorithm for
detecting cancer. In this study we note the following.
(a) The units of observation are the patients.
(b) The examples are members of a sample of cancer patients.
(c) The following attributes of the patients may be chosen as
the features:
• gender
• age
• blood pressure
• the findings of the pathology report after a biopsy
Dr.Ranjitha M ; Kristu Jayanti College
2. Pet selection
Suppose we want to predict the type of pet a
person will choose.
(a) The units are the persons.
(b) The examples are members of a sample of
persons who own pets.
(c) The features might include age, home region,
family income, etc. of persons who own pets.
Dr.Ranjitha M ; Kristu Jayanti College
Dr.Ranjitha M ; Kristu Jayanti College
Example for “examples” and “features” collected in a matrix format (data
relates to automobiles and their features). Examples and features are
generally collected in a “matrix format”. Figure shows such a data
set.
3. Spam e-mail
Let it be required to build a learning algorithm
to identify spam e-mail.
(a) The unit of observation could be an e-mail
messages.
(b) The examples would be specific messages.
(c) The features might consist of the words used
in the messages.
Dr.Ranjitha M ; Kristu Jayanti College
Different forms of data
1. Numeric data
If a feature represents a characteristic measured in numbers, it is
called a numeric feature.
2. Categorical or nominal
A categorical feature is an attribute that can take on one of a limited,
and usually fixed, number of possible values on the basis of some
qualitative property. A categorical feature is also called a nominal
feature.
3. Ordinal data
This denotes a nominal variable with categories falling in an ordered
list.
Examples include
• clothing sizes such as small, medium, and large, or
• a measurement of customer satisfaction
on a scale from “not at all happy” to “very happy.”
Dr.Ranjitha M ; Kristu Jayanti College
Examples
• In the data given in previous slide, the
features “year”, “price” and “mileage” are
numeric
• and the features“model”, “color” and
“transmission” are categorical.
Dr.Ranjitha M ; Kristu Jayanti College
General classes of machine learning
problems
Learning associations
1. Association rule learning
• Association rule learning is a machine learning method for
discovering interesting relations, called “association rules”, between
variables in large databases using some measures of
“interestingness”.
Example
• Consider a supermarket chain. The management of the chain is
interested in knowing whether there are any patterns in the
purchases of products by customers like the following:
• “If a customer buys onions and potatoes together, then he/she is
likely to also buy hamburger.”
• From the standpoint
Dr.Ranjitha M ; Kristu Jayanti College
• From the standpoint of customer behaviour,
this defines an association between the set of
products {onion, potato} and the set {burger}.
• This association is represented in the form of
a rule as follows:
{onion, potato} {burger}
Dr.Ranjitha M ; Kristu Jayanti College
• The measure of how likely a customer, who
has bought onion and potato, to buy burger
also
is given by the conditional probability
P({onion, potato}|{burger}):
• If this conditional probability is 0.8, then the
rule may be stated more precisely as follows:
• “80% of customers who buy onion and potato
also buy burger.”
Dr.Ranjitha M ; Kristu Jayanti College
How association rules are made use of
• Consider an association rule of the form
X Y;
• that is, if people buy X then they are also likely to
buy Y .
• Suppose there is a customer who buys X and
does not buy Y .
• Then that customer is a potential Y customer.
Once we find such customers, we can target them
for cross-selling. A knowledge of such rules can
be used for promotional pricing or product
placements.
Dr.Ranjitha M ; Kristu Jayanti College
Classification
2. Definition
• In machine learning, classification is the
problem of identifying to which of a set of
categories a new observation belongs, on the
basis of a training set of data containing
observations (or instances) whose category
membership is known.
Dr.Ranjitha M ; Kristu Jayanti College
Real life examples
i) Optical character recognition
Optical character recognition problem, which is the problem of recognizing character codes
from their images, is an example of classification problem.
This is an example where there are multiple classes, as many as there are characters we would
like to recognize. Especially interesting is the case when the characters are handwritten.
People have different handwriting styles; characters may be written small or large, slanted,
with a pen or pencil, and there are many possible images corresponding to the same
character.
Dr.Ranjitha M ; Kristu Jayanti College
ii) Face recognition
In the case of face recognition, the input is an
image, the classes are people to be recognized,
and the learning program should learn to associate
the face images to identities. This problem
is more difficult than optical character recognition
because there are more classes, input
image is larger, and a face is three-dimensional and
differences in pose and lighting cause
significant changes in the image.
Dr.Ranjitha M ; Kristu Jayanti College
Medical diagnosis
• In medical diagnosis, the inputs are the
relevant information we have about the
patient and
• the classes are the illnesses. The inputs
contain the patient’s age, gender, past medical
• history, and current symptoms. Some tests
may not have been applied to the patient, and
• thus these inputs would be missing.
Dr.Ranjitha M ; Kristu Jayanti College
Algorithms
There are several machine learning algorithms for
classification. The following are some of the
• well-known algorithms.
• a) Logistic regression
• b) Naive Bayes algorithm
• c) k-NN algorithm
• d) Decision tree algorithm
• e) Support vector machine algorithm
• f) Random forest algorithm
Dr.Ranjitha M ; Kristu Jayanti College
Remarks
• A classification problem requires that examples be
classified into one of two or more classes.
• A classification can have real-valued or discrete input
variables.
• A problem with two classes is often called a two-class or
binary classification problem.
• A problem with more than two classes is often called a
multi-class classification problem.
• A problem where an example is assigned multiple
classes is called a multi-label classification
problem.
Dr.Ranjitha M ; Kristu Jayanti College

More Related Content

What's hot

An Overview and Application of Discriminant Analysis in Data Analysis
An Overview and Application of Discriminant Analysis in Data AnalysisAn Overview and Application of Discriminant Analysis in Data Analysis
An Overview and Application of Discriminant Analysis in Data AnalysisIOSR Journals
 
Lesson 3 basic terms in statistics
Lesson 3 basic terms in statisticsLesson 3 basic terms in statistics
Lesson 3 basic terms in statisticsMaris Ganace
 
Basic course on computer-based methods
Basic course on computer-based methodsBasic course on computer-based methods
Basic course on computer-based methodsimprovemed
 
Basic course for computer based methods
Basic course for computer based methodsBasic course for computer based methods
Basic course for computer based methodsimprovemed
 
Overview of the Possibilities of Quantitative Methods in Political Science
Overview of the Possibilities of Quantitative Methods in Political ScienceOverview of the Possibilities of Quantitative Methods in Political Science
Overview of the Possibilities of Quantitative Methods in Political Scienceenvironmentalconflicts
 
Topic_6
Topic_6Topic_6
Topic_6butest
 
Unit 2 MARKETING RESEARCH
Unit 2 MARKETING RESEARCHUnit 2 MARKETING RESEARCH
Unit 2 MARKETING RESEARCHPramod Rawat
 
Classification techniques in data mining
Classification techniques in data miningClassification techniques in data mining
Classification techniques in data miningKamal Acharya
 
Quantitative data 2
Quantitative data 2Quantitative data 2
Quantitative data 2Illi Elas
 
Feature selection on boolean symbolic objects
Feature selection on boolean symbolic objectsFeature selection on boolean symbolic objects
Feature selection on boolean symbolic objectsijcsity
 
Statistics Notes
Statistics NotesStatistics Notes
Statistics Notessd
 
04 Classification in Data Mining
04 Classification in Data Mining04 Classification in Data Mining
04 Classification in Data MiningValerii Klymchuk
 
A COMPARATIVE STUDY OF FEATURE SELECTION METHODS
A COMPARATIVE STUDY OF FEATURE SELECTION METHODSA COMPARATIVE STUDY OF FEATURE SELECTION METHODS
A COMPARATIVE STUDY OF FEATURE SELECTION METHODSijnlc
 
Overview of Quantitative research by Prof Rajbir Singh.
Overview of Quantitative research by Prof Rajbir Singh.Overview of Quantitative research by Prof Rajbir Singh.
Overview of Quantitative research by Prof Rajbir Singh.Dr Rajesh Verma
 
Associative Classification: Synopsis
Associative Classification: SynopsisAssociative Classification: Synopsis
Associative Classification: SynopsisJagdeep Singh Malhi
 
OOAD - UML - Class and Object Diagrams - Lab
OOAD - UML - Class and Object Diagrams - LabOOAD - UML - Class and Object Diagrams - Lab
OOAD - UML - Class and Object Diagrams - LabVicter Paul
 
Multiple discriminant analysis
Multiple discriminant analysisMultiple discriminant analysis
Multiple discriminant analysisMUHAMMAD HASRATH
 

What's hot (20)

An Overview and Application of Discriminant Analysis in Data Analysis
An Overview and Application of Discriminant Analysis in Data AnalysisAn Overview and Application of Discriminant Analysis in Data Analysis
An Overview and Application of Discriminant Analysis in Data Analysis
 
Lesson 3 basic terms in statistics
Lesson 3 basic terms in statisticsLesson 3 basic terms in statistics
Lesson 3 basic terms in statistics
 
Basic course on computer-based methods
Basic course on computer-based methodsBasic course on computer-based methods
Basic course on computer-based methods
 
Basic course for computer based methods
Basic course for computer based methodsBasic course for computer based methods
Basic course for computer based methods
 
Overview of the Possibilities of Quantitative Methods in Political Science
Overview of the Possibilities of Quantitative Methods in Political ScienceOverview of the Possibilities of Quantitative Methods in Political Science
Overview of the Possibilities of Quantitative Methods in Political Science
 
Statistics and probability lesson 4
Statistics and probability lesson 4Statistics and probability lesson 4
Statistics and probability lesson 4
 
Topic_6
Topic_6Topic_6
Topic_6
 
Unit 2 MARKETING RESEARCH
Unit 2 MARKETING RESEARCHUnit 2 MARKETING RESEARCH
Unit 2 MARKETING RESEARCH
 
Classification techniques in data mining
Classification techniques in data miningClassification techniques in data mining
Classification techniques in data mining
 
121 vhgfhg
121 vhgfhg121 vhgfhg
121 vhgfhg
 
Quantitative data 2
Quantitative data 2Quantitative data 2
Quantitative data 2
 
Feature selection on boolean symbolic objects
Feature selection on boolean symbolic objectsFeature selection on boolean symbolic objects
Feature selection on boolean symbolic objects
 
Statistics Notes
Statistics NotesStatistics Notes
Statistics Notes
 
04 Classification in Data Mining
04 Classification in Data Mining04 Classification in Data Mining
04 Classification in Data Mining
 
A COMPARATIVE STUDY OF FEATURE SELECTION METHODS
A COMPARATIVE STUDY OF FEATURE SELECTION METHODSA COMPARATIVE STUDY OF FEATURE SELECTION METHODS
A COMPARATIVE STUDY OF FEATURE SELECTION METHODS
 
7 decision tree
7 decision tree7 decision tree
7 decision tree
 
Overview of Quantitative research by Prof Rajbir Singh.
Overview of Quantitative research by Prof Rajbir Singh.Overview of Quantitative research by Prof Rajbir Singh.
Overview of Quantitative research by Prof Rajbir Singh.
 
Associative Classification: Synopsis
Associative Classification: SynopsisAssociative Classification: Synopsis
Associative Classification: Synopsis
 
OOAD - UML - Class and Object Diagrams - Lab
OOAD - UML - Class and Object Diagrams - LabOOAD - UML - Class and Object Diagrams - Lab
OOAD - UML - Class and Object Diagrams - Lab
 
Multiple discriminant analysis
Multiple discriminant analysisMultiple discriminant analysis
Multiple discriminant analysis
 

Similar to Types of learning

Engineering Ethics: Practicing Fairness
Engineering Ethics: Practicing FairnessEngineering Ethics: Practicing Fairness
Engineering Ethics: Practicing FairnessClare Corthell
 
Data Mining Presentation.pptx
Data Mining Presentation.pptxData Mining Presentation.pptx
Data Mining Presentation.pptxChingChingErm
 
Ms 66 marketing research
Ms 66 marketing researchMs 66 marketing research
Ms 66 marketing researchsmumbahelp
 
Statistical Learning - Introduction.pptx
Statistical Learning - Introduction.pptxStatistical Learning - Introduction.pptx
Statistical Learning - Introduction.pptxJayaprakashGururaj
 
Supervised Learning-Unit 3.pptx
Supervised Learning-Unit 3.pptxSupervised Learning-Unit 3.pptx
Supervised Learning-Unit 3.pptxnehashanbhag5
 
Sqqs1013 ch1-a122
Sqqs1013 ch1-a122Sqqs1013 ch1-a122
Sqqs1013 ch1-a122kim rae KI
 
classIX_DS_Teacher_Presentation.pptx
classIX_DS_Teacher_Presentation.pptxclassIX_DS_Teacher_Presentation.pptx
classIX_DS_Teacher_Presentation.pptxXICSStudents
 
Statistik Chapter 1
Statistik Chapter 1Statistik Chapter 1
Statistik Chapter 1WanBK Leo
 
Data mining Basics and complete description onword
Data mining Basics and complete description onwordData mining Basics and complete description onword
Data mining Basics and complete description onwordSulman Ahmed
 
Statistical Inference for development statistical model.pptx
Statistical Inference for development statistical model.pptxStatistical Inference for development statistical model.pptx
Statistical Inference for development statistical model.pptxQasimGull
 
Chapter 4 Classification in data sience .pdf
Chapter 4 Classification in data sience .pdfChapter 4 Classification in data sience .pdf
Chapter 4 Classification in data sience .pdfAschalewAyele2
 
Business Stats PPT1.pptx
Business Stats PPT1.pptxBusiness Stats PPT1.pptx
Business Stats PPT1.pptxGautamGulati24
 
CodeLess Machine Learning
CodeLess Machine LearningCodeLess Machine Learning
CodeLess Machine LearningSharjeel Imtiaz
 
Data science notes for ASDS calicut 2.pptx
Data science notes for ASDS calicut 2.pptxData science notes for ASDS calicut 2.pptx
Data science notes for ASDS calicut 2.pptxswapnaraghav
 
The nature of probability and statistics
The nature of probability and statisticsThe nature of probability and statistics
The nature of probability and statisticsSan Benito CISD
 

Similar to Types of learning (20)

Lecture 3 ml
Lecture 3 mlLecture 3 ml
Lecture 3 ml
 
Engineering Ethics: Practicing Fairness
Engineering Ethics: Practicing FairnessEngineering Ethics: Practicing Fairness
Engineering Ethics: Practicing Fairness
 
unit 1.pptx
unit 1.pptxunit 1.pptx
unit 1.pptx
 
Data Mining Presentation.pptx
Data Mining Presentation.pptxData Mining Presentation.pptx
Data Mining Presentation.pptx
 
Ms 66 marketing research
Ms 66 marketing researchMs 66 marketing research
Ms 66 marketing research
 
Statistical Learning - Introduction.pptx
Statistical Learning - Introduction.pptxStatistical Learning - Introduction.pptx
Statistical Learning - Introduction.pptx
 
Supervised Learning-Unit 3.pptx
Supervised Learning-Unit 3.pptxSupervised Learning-Unit 3.pptx
Supervised Learning-Unit 3.pptx
 
Sqqs1013 ch1-a122
Sqqs1013 ch1-a122Sqqs1013 ch1-a122
Sqqs1013 ch1-a122
 
classIX_DS_Teacher_Presentation.pptx
classIX_DS_Teacher_Presentation.pptxclassIX_DS_Teacher_Presentation.pptx
classIX_DS_Teacher_Presentation.pptx
 
Statistik Chapter 1
Statistik Chapter 1Statistik Chapter 1
Statistik Chapter 1
 
Data mining Basics and complete description onword
Data mining Basics and complete description onwordData mining Basics and complete description onword
Data mining Basics and complete description onword
 
Statistical Inference for development statistical model.pptx
Statistical Inference for development statistical model.pptxStatistical Inference for development statistical model.pptx
Statistical Inference for development statistical model.pptx
 
Clustering.pptx
Clustering.pptxClustering.pptx
Clustering.pptx
 
Clustering.pptx
Clustering.pptxClustering.pptx
Clustering.pptx
 
ml-03x01.pdf
ml-03x01.pdfml-03x01.pdf
ml-03x01.pdf
 
Chapter 4 Classification in data sience .pdf
Chapter 4 Classification in data sience .pdfChapter 4 Classification in data sience .pdf
Chapter 4 Classification in data sience .pdf
 
Business Stats PPT1.pptx
Business Stats PPT1.pptxBusiness Stats PPT1.pptx
Business Stats PPT1.pptx
 
CodeLess Machine Learning
CodeLess Machine LearningCodeLess Machine Learning
CodeLess Machine Learning
 
Data science notes for ASDS calicut 2.pptx
Data science notes for ASDS calicut 2.pptxData science notes for ASDS calicut 2.pptx
Data science notes for ASDS calicut 2.pptx
 
The nature of probability and statistics
The nature of probability and statisticsThe nature of probability and statistics
The nature of probability and statistics
 

More from RanjithaM32

Various types of File Operations in Java
Various types of  File Operations in JavaVarious types of  File Operations in Java
Various types of File Operations in JavaRanjithaM32
 
Unit 4 Ethics in health research.pptx
Unit 4 Ethics in health research.pptxUnit 4 Ethics in health research.pptx
Unit 4 Ethics in health research.pptxRanjithaM32
 
Unit 1 NoSQL commands.pptx
Unit 1 NoSQL commands.pptxUnit 1 NoSQL commands.pptx
Unit 1 NoSQL commands.pptxRanjithaM32
 
Java Multithreading.pptx
Java Multithreading.pptxJava Multithreading.pptx
Java Multithreading.pptxRanjithaM32
 
Java Exception.ppt
Java Exception.pptJava Exception.ppt
Java Exception.pptRanjithaM32
 
ARtificial Intelligence Knowledge Representation.pptx
ARtificial Intelligence Knowledge Representation.pptxARtificial Intelligence Knowledge Representation.pptx
ARtificial Intelligence Knowledge Representation.pptxRanjithaM32
 
Html introduction
Html introductionHtml introduction
Html introductionRanjithaM32
 
Knowledge base system
Knowledge base systemKnowledge base system
Knowledge base systemRanjithaM32
 

More from RanjithaM32 (13)

svm.ppt
svm.pptsvm.ppt
svm.ppt
 
Various types of File Operations in Java
Various types of  File Operations in JavaVarious types of  File Operations in Java
Various types of File Operations in Java
 
Unit 4 Ethics in health research.pptx
Unit 4 Ethics in health research.pptxUnit 4 Ethics in health research.pptx
Unit 4 Ethics in health research.pptx
 
Unit 1 NoSQL commands.pptx
Unit 1 NoSQL commands.pptxUnit 1 NoSQL commands.pptx
Unit 1 NoSQL commands.pptx
 
Java Multithreading.pptx
Java Multithreading.pptxJava Multithreading.pptx
Java Multithreading.pptx
 
Java Exception.ppt
Java Exception.pptJava Exception.ppt
Java Exception.ppt
 
ARtificial Intelligence Knowledge Representation.pptx
ARtificial Intelligence Knowledge Representation.pptxARtificial Intelligence Knowledge Representation.pptx
ARtificial Intelligence Knowledge Representation.pptx
 
Lisp.pptx
Lisp.pptxLisp.pptx
Lisp.pptx
 
Java interfaces
Java interfacesJava interfaces
Java interfaces
 
Html introduction
Html introductionHtml introduction
Html introduction
 
Threads
ThreadsThreads
Threads
 
Ml introduction
Ml introductionMl introduction
Ml introduction
 
Knowledge base system
Knowledge base systemKnowledge base system
Knowledge base system
 

Recently uploaded

Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxAvyJaneVismanos
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...M56BOOKSTORE PRODUCT/SERVICE
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitolTechU
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersSabitha Banu
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfadityarao40181
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
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 communicationnomboosow
 

Recently uploaded (20)

Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptx
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptx
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginners
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdf
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
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
 

Types of learning

  • 1. Different types of Learning Dr.Ranjitha M ; Kristu Jayanti College
  • 2. Unit of observation • By a unit of observation we mean the smallest entity with measured properties of interest for a study. Examples • A person, an object or a thing • A time point • A geographic region • A measurement Sometimes, units of observation are combined to form units such as person-years. Dr.Ranjitha M ; Kristu Jayanti College
  • 3. Examples/Instances and features • Datasets that store the units of observation and their properties can be imagined as collections of data consisting of the following: Examples • An “example” is an instance of the unit of observation for which properties have been recorded. • An “example” is also referred to as an “instance”, or “case” or “record.” (It may be noted that the word “example” has been used here in a technical sense.) Features • A “feature” is a recorded property or a characteristic of examples. It is also referred to as “attribute”, or “variable” or “feature.” Dr.Ranjitha M ; Kristu Jayanti College
  • 4. Examples for “examples” and “features” 1. Cancer detection Consider the problem of developing an algorithm for detecting cancer. In this study we note the following. (a) The units of observation are the patients. (b) The examples are members of a sample of cancer patients. (c) The following attributes of the patients may be chosen as the features: • gender • age • blood pressure • the findings of the pathology report after a biopsy Dr.Ranjitha M ; Kristu Jayanti College
  • 5. 2. Pet selection Suppose we want to predict the type of pet a person will choose. (a) The units are the persons. (b) The examples are members of a sample of persons who own pets. (c) The features might include age, home region, family income, etc. of persons who own pets. Dr.Ranjitha M ; Kristu Jayanti College
  • 6. Dr.Ranjitha M ; Kristu Jayanti College Example for “examples” and “features” collected in a matrix format (data relates to automobiles and their features). Examples and features are generally collected in a “matrix format”. Figure shows such a data set.
  • 7. 3. Spam e-mail Let it be required to build a learning algorithm to identify spam e-mail. (a) The unit of observation could be an e-mail messages. (b) The examples would be specific messages. (c) The features might consist of the words used in the messages. Dr.Ranjitha M ; Kristu Jayanti College
  • 8. Different forms of data 1. Numeric data If a feature represents a characteristic measured in numbers, it is called a numeric feature. 2. Categorical or nominal A categorical feature is an attribute that can take on one of a limited, and usually fixed, number of possible values on the basis of some qualitative property. A categorical feature is also called a nominal feature. 3. Ordinal data This denotes a nominal variable with categories falling in an ordered list. Examples include • clothing sizes such as small, medium, and large, or • a measurement of customer satisfaction on a scale from “not at all happy” to “very happy.” Dr.Ranjitha M ; Kristu Jayanti College
  • 9. Examples • In the data given in previous slide, the features “year”, “price” and “mileage” are numeric • and the features“model”, “color” and “transmission” are categorical. Dr.Ranjitha M ; Kristu Jayanti College
  • 10. General classes of machine learning problems Learning associations 1. Association rule learning • Association rule learning is a machine learning method for discovering interesting relations, called “association rules”, between variables in large databases using some measures of “interestingness”. Example • Consider a supermarket chain. The management of the chain is interested in knowing whether there are any patterns in the purchases of products by customers like the following: • “If a customer buys onions and potatoes together, then he/she is likely to also buy hamburger.” • From the standpoint Dr.Ranjitha M ; Kristu Jayanti College
  • 11. • From the standpoint of customer behaviour, this defines an association between the set of products {onion, potato} and the set {burger}. • This association is represented in the form of a rule as follows: {onion, potato} {burger} Dr.Ranjitha M ; Kristu Jayanti College
  • 12. • The measure of how likely a customer, who has bought onion and potato, to buy burger also is given by the conditional probability P({onion, potato}|{burger}): • If this conditional probability is 0.8, then the rule may be stated more precisely as follows: • “80% of customers who buy onion and potato also buy burger.” Dr.Ranjitha M ; Kristu Jayanti College
  • 13. How association rules are made use of • Consider an association rule of the form X Y; • that is, if people buy X then they are also likely to buy Y . • Suppose there is a customer who buys X and does not buy Y . • Then that customer is a potential Y customer. Once we find such customers, we can target them for cross-selling. A knowledge of such rules can be used for promotional pricing or product placements. Dr.Ranjitha M ; Kristu Jayanti College
  • 14. Classification 2. Definition • In machine learning, classification is the problem of identifying to which of a set of categories a new observation belongs, on the basis of a training set of data containing observations (or instances) whose category membership is known. Dr.Ranjitha M ; Kristu Jayanti College
  • 15. Real life examples i) Optical character recognition Optical character recognition problem, which is the problem of recognizing character codes from their images, is an example of classification problem. This is an example where there are multiple classes, as many as there are characters we would like to recognize. Especially interesting is the case when the characters are handwritten. People have different handwriting styles; characters may be written small or large, slanted, with a pen or pencil, and there are many possible images corresponding to the same character. Dr.Ranjitha M ; Kristu Jayanti College
  • 16. ii) Face recognition In the case of face recognition, the input is an image, the classes are people to be recognized, and the learning program should learn to associate the face images to identities. This problem is more difficult than optical character recognition because there are more classes, input image is larger, and a face is three-dimensional and differences in pose and lighting cause significant changes in the image. Dr.Ranjitha M ; Kristu Jayanti College
  • 17. Medical diagnosis • In medical diagnosis, the inputs are the relevant information we have about the patient and • the classes are the illnesses. The inputs contain the patient’s age, gender, past medical • history, and current symptoms. Some tests may not have been applied to the patient, and • thus these inputs would be missing. Dr.Ranjitha M ; Kristu Jayanti College
  • 18. Algorithms There are several machine learning algorithms for classification. The following are some of the • well-known algorithms. • a) Logistic regression • b) Naive Bayes algorithm • c) k-NN algorithm • d) Decision tree algorithm • e) Support vector machine algorithm • f) Random forest algorithm Dr.Ranjitha M ; Kristu Jayanti College
  • 19. Remarks • A classification problem requires that examples be classified into one of two or more classes. • A classification can have real-valued or discrete input variables. • A problem with two classes is often called a two-class or binary classification problem. • A problem with more than two classes is often called a multi-class classification problem. • A problem where an example is assigned multiple classes is called a multi-label classification problem. Dr.Ranjitha M ; Kristu Jayanti College