SlideShare a Scribd company logo
1 of 39
Machine Learning
k-Nearest Neighbor Classifiers
1-Nearest Neighbor Classifier
Test Examples
(What class to assign this?)
1-Nearest Neighbor
2-Nearest Neighbor
3-Nearest Neighbor
8-Nearest Neighbor
Controlling COMPLEXITY in k-NN
Ingredient Sweetness Crunchiness Food type
apple 10 9 fruit
Bacon 1 4 protein
banana 10 1 fruit
carrot 7 10 vegetable
celery 3 10 vegetable
cheese 1 1 protein
Measuring similarity with distance
Locating the tomato's nearest neighbors requires a distance function, or a
formula that measures the similarity between the two instances.
There are many different ways to calculate distance. Traditionally, the k-NN
algorithm uses Euclidean distance, which is the distance one would measure
if it were possible to use a ruler to connect two points, illustrated in the previous
figure by the dotted lines connecting the tomato to its neighbors.
Euclidean distance
Euclidean distance is specified by the following formula, where p and q are the
examples to be compared, each having n features. The term p1 refers to the value
of the first feature of example p, while q1 refers to the value of the first feature of
example q:
Application of KNN
Which Class Tomoto belongs to given the feature values:
Tomato (sweetness = 6, crunchiness = 4),
K = 3, 5, 7, 9
K = 11,13,15,17
Bayesian Classifiers
Understanding probability
The probability of an event is estimated from the observed data by dividing
the number of trials in which the event occurred by the total number of
trials
For instance, if it rained 3 out of 10 days with similar conditions as
today, the probability of rain today can be estimated as 3 / 10 = 0.30 or
30 percent.
Similarly, if 10 out of 50 prior email messages were spam, then the
probability of any incoming message being spam can be estimated as
10 / 50 = 0.20 or 20 percent.
Note: The probability of all the possible outcomes of a trial must always sum to 1
For example, given the value P(spam) = 0.20, we can calculate P(ham)
= 1 – 0.20 = 0.80
For example, given the value P(spam) = 0.20, we can calculate P(ham)
= 1 – 0.20 = 0.80
Understanding probability cont..
Because an event cannot simultaneously happen and not happen, an event is
always mutually exclusive and exhaustive with its complement
The complement of event A is typically denoted Ac or A'.
Additionally, the shorthand notation P(¬A) can used to denote the probability of
event A not occurring, as in P(¬spam) = 0.80. This notation is equivalent to
P(Ac).
Understanding joint probability
Often, we are interested in monitoring several nonmutually exclusive events for
the same trial
Spam
20%
Lotter
y 5%
Ham
80%
All emails
Lottery
without
appearing
in Spam
Lottery
appearing
in Ham
Lottery appearing in
Spam
Understanding joint probability
Estimate the probability that both P(spam) and P(Spam) occur, which can be written as P(spam ∩ Lottery).
the notation A ∩ B refers to the event in which both A and B occur.
Calculating P(spam ∩ Lottery) depends on the joint probability of the two events or
how the probability of one event is related to the probability of the other.
If the two events are totally unrelated, they are called independent events
If P(spam) and P(Lottery) were independent, we could easily calculate
P(spam ∩ Lottery), the probability of both events happening at the same time.
Because 20 percent of all the messages are spam, and 5 percent of all the e-
mails contain the word Lottery, we could assume that 1 percent of all
messages are spam with the term Lottery.
More generally, for independent events A and B, the probability of both
happening can be expressed as P(A ∩ B) = P(A) * P(B).
0.05 * 0.20 = 0.01
Bayes Rule
 Bayes Rule: The most important Equation in ML!!
P Class Data( )=
P Class( )P Data Class( )
P Data( )
Posterior Probability
(Probability of class AFTER seeing the data)
Class Prior Data Likelihood given Class
Data Prior (Marginal)
Naïve Bayes Classifier
Conditional Independence
 Simple Independence between two variables:
 Class Conditional Independence assumption:
P X1,X2( )= P X1( )P X2( )
P X1, X2( )¹ P X1( )P X2( )
P X1, X2 C( )= P X1 C( )P X2 C( )
P Fever, BodyAche( )¹ P Fever( )P BodyAche( )
P Fever, BodyAche Viral( )= P Fever Viral( )P BodyAche Viral( )
Naïve Bayes Classifier
Conditional Independence among variables given Classes!
 Simplifying assumption
 Baseline model especially when large number of features
 Taking log and ignoring denominator:
P C X1, X2,..., XD( )=
P C( )P X1, X2,..., XD C( )
P X1, X2,..., XD C'( )
¢C
å
=
P C( ) P Xd C( )
d=1
D
Õ
P Xd ¢C( )
d=1
D
Õ
¢C
å
log P C X1, X2,..., XD( )( )µlog P C( )( )+ log
d=1
D
å P Xd C( )( )
Naïve Bayes Classifier for
Categorical Valued Variables
Let’s Naïve Bayes!
#EXMPL
S
COLOR SHAPE
LIK
E
20 Red Square Y
10 Red Circle Y
10 Red Triangle N
10 Green Square N
5 Green Circle Y
5 Green Triangle N
10 Blue Square N
10 Blue Circle N
20 Blue Triangle Y
log P C X1, X2,..., XD( )( )µlog P C( )( )+ log
d=1
D
å P Xd C( )( )
Class Prior Parameters:
P Like = Y( )= ???
P Like = N( ) = ???
Class Conditional Likelihoods
P Color = Red Like = Y( )= ????
P Color = Red Like = N( )= ????
...
P Shape = Triangle Like = N( )= ????
Naïve Bayes Classifier for
Text Classifier
Text Classification Example
 Doc1 = {buy two shirts get one shirt half off}
 Doc2 = {get a free watch. send your contact details now}
 Doc3 = {your flight to chennai is delayed by two hours}
 Doc4 = {you have three tweets from @sachin}
Four Class Problem:
 Spam,
 Promotions,
 Social,
 Main
P promo doc1( )= 0.84
P spam doc2( )= 0.94
P main doc3( )= 0.75
P social doc4( )= 0.91
Bag-of-Words Representation
 Structured (e.g. Multivariate) data – fixed number of features
 Unstructured (e.g. Text) data
 arbitrary length documents,
 high dimensional feature space (many words in vocabulary),
 Sparse (small fraction of vocabulary words present in a doc.)
 Bag-of-Words Representation:
 Ignore Sequential order of words
 Represent as a Weighted-Set – Term Frequency of each term
Naïve Bayes Classifier with BoW
 Make an “independence assumption” about words | class
P doc1 promo( )
= P buy :1, two :1, shirt :2, get :1, one :1, half :1, off :1 promo( )
= P buy :1 promo( )P two :1 promo( )P shirt :2 promo( )
P get :1 promo( )P one :1 promo( )P free:1 promo( )
= P buy promo( )
1
P two promo( )
1
P shirt promo( )
2
P get promo( )
1
P one promo( )
1
P free promo( )
1
Naïve Bayes Text Classifiers
 Log Likelihood of document given class.
 Parameters in Naïve Bayes Text classifiers:
doc = tf wm( ){ }m=1
M
tf wm( )= Number of times word wm occurs in doc
P doc class( )= P w1 class( )
tf w1( )
P w2 class( )
tf w2( )
...P wM class( )
tf wM( )
P wm c( )= Probability that word wm occurs in documents of class c
P shirt promo( ),P free spam( ),P buy spam( ),P buy promo( ),...
Number of parameters = ??
doc1
doc2
...
docm
doc1
doc2
doc3
...
...
docn
 Likelihood of a word given class. For each word, each class.
 Estimating these parameters from data:
Naïve Bayes Parameters
P wm c( )= Probability that word wm occurs in documents of class c
N wm,c( )= Number of times word wm occurs in documents of class c
N free, promo( )= tf free doc( )
docÎpromo
å
N free,spam( )= tf free doc( )
docÎspam
å
Bayesian Classifier
Multi-variate real-valued data
Bayes Rule
P Class Data( )=
P Class( )P Data Class( )
P Data( )
Posterior Probability
(Probability of class AFTER seeing the data)
Class Prior Data Likelihood given Class
Data Prior (Marginal)
P c x( )=
P c( )P x c( )
P x( )
x ÎRD
Simple Bayesian Classifier
P c x( )=
P c( )P x c( )
P x( )
Sum: P x c( )dx
xÎRD
ò = 1
Mean: xP x c( )dx
xÎRD
ò = mc
Co-Variance: x - mc( ) x - mc( )T
P x c( )dx
xÎRD
ò = Sc
P x c( )= N x mc,Sc( )=
1
2p( )
D
2 Sc
1
2
exp -
1
2
x - mc( )T
Sc
-1
x - mc( )æ
èç
ö
ø÷
Controlling COMPLEXITY

More Related Content

What's hot

CMSC 56 | Lecture 3: Predicates & Quantifiers
CMSC 56 | Lecture 3: Predicates & QuantifiersCMSC 56 | Lecture 3: Predicates & Quantifiers
CMSC 56 | Lecture 3: Predicates & Quantifiersallyn joy calcaben
 
File ...handouts complete
File ...handouts completeFile ...handouts complete
File ...handouts completeRaja Hussain
 
3.1 higher derivatives
3.1 higher derivatives3.1 higher derivatives
3.1 higher derivativesmath265
 
Probability Basics and Bayes' Theorem
Probability Basics and Bayes' TheoremProbability Basics and Bayes' Theorem
Probability Basics and Bayes' TheoremMenglinLiu1
 
Lecture 3 qualtifed rules of inference
Lecture 3 qualtifed rules of inferenceLecture 3 qualtifed rules of inference
Lecture 3 qualtifed rules of inferenceasimnawaz54
 
Introduction to random variables
Introduction to random variablesIntroduction to random variables
Introduction to random variablesHadley Wickham
 
4.5 calculation with log and exp
4.5 calculation with log and exp4.5 calculation with log and exp
4.5 calculation with log and expmath260
 
4 3polynomial expressions
4 3polynomial expressions4 3polynomial expressions
4 3polynomial expressionsmath123a
 
Bba i-bm-u-3.2-differentiation -
Bba i-bm-u-3.2-differentiation - Bba i-bm-u-3.2-differentiation -
Bba i-bm-u-3.2-differentiation - Rai University
 
Appendex b
Appendex bAppendex b
Appendex bswavicky
 
3 algebraic expressions y
3 algebraic expressions y3 algebraic expressions y
3 algebraic expressions ymath266
 
4 4polynomial operations
4 4polynomial operations4 4polynomial operations
4 4polynomial operationsmath123a
 
Limits Involving Number e
Limits Involving Number eLimits Involving Number e
Limits Involving Number ePablo Antuna
 

What's hot (17)

L07 msr
L07 msrL07 msr
L07 msr
 
CMSC 56 | Lecture 3: Predicates & Quantifiers
CMSC 56 | Lecture 3: Predicates & QuantifiersCMSC 56 | Lecture 3: Predicates & Quantifiers
CMSC 56 | Lecture 3: Predicates & Quantifiers
 
File ...handouts complete
File ...handouts completeFile ...handouts complete
File ...handouts complete
 
Sample Space And Events
Sample Space And EventsSample Space And Events
Sample Space And Events
 
42 linear equations
42 linear equations42 linear equations
42 linear equations
 
Information theory
Information theoryInformation theory
Information theory
 
3.1 higher derivatives
3.1 higher derivatives3.1 higher derivatives
3.1 higher derivatives
 
Probability Basics and Bayes' Theorem
Probability Basics and Bayes' TheoremProbability Basics and Bayes' Theorem
Probability Basics and Bayes' Theorem
 
Lecture 3 qualtifed rules of inference
Lecture 3 qualtifed rules of inferenceLecture 3 qualtifed rules of inference
Lecture 3 qualtifed rules of inference
 
Introduction to random variables
Introduction to random variablesIntroduction to random variables
Introduction to random variables
 
4.5 calculation with log and exp
4.5 calculation with log and exp4.5 calculation with log and exp
4.5 calculation with log and exp
 
4 3polynomial expressions
4 3polynomial expressions4 3polynomial expressions
4 3polynomial expressions
 
Bba i-bm-u-3.2-differentiation -
Bba i-bm-u-3.2-differentiation - Bba i-bm-u-3.2-differentiation -
Bba i-bm-u-3.2-differentiation -
 
Appendex b
Appendex bAppendex b
Appendex b
 
3 algebraic expressions y
3 algebraic expressions y3 algebraic expressions y
3 algebraic expressions y
 
4 4polynomial operations
4 4polynomial operations4 4polynomial operations
4 4polynomial operations
 
Limits Involving Number e
Limits Involving Number eLimits Involving Number e
Limits Involving Number e
 

Similar to Artificial intelligence training in bangalore

Similar to Artificial intelligence training in bangalore (20)

Basic Concept Of Probability
Basic Concept Of ProbabilityBasic Concept Of Probability
Basic Concept Of Probability
 
Probability Cheatsheet.pdf
Probability Cheatsheet.pdfProbability Cheatsheet.pdf
Probability Cheatsheet.pdf
 
Probability cheatsheet
Probability cheatsheetProbability cheatsheet
Probability cheatsheet
 
Probability cheatsheet
Probability cheatsheetProbability cheatsheet
Probability cheatsheet
 
Microeconomics-Help-Experts.pptx
Microeconomics-Help-Experts.pptxMicroeconomics-Help-Experts.pptx
Microeconomics-Help-Experts.pptx
 
Chapter 6 Probability
Chapter 6  ProbabilityChapter 6  Probability
Chapter 6 Probability
 
Applied machine learning for search engine relevance 3
Applied machine learning for search engine relevance 3Applied machine learning for search engine relevance 3
Applied machine learning for search engine relevance 3
 
Information Theory and coding - Lecture 1
Information Theory and coding - Lecture 1Information Theory and coding - Lecture 1
Information Theory and coding - Lecture 1
 
Bayes Classification
Bayes ClassificationBayes Classification
Bayes Classification
 
Data mining assignment 2
Data mining assignment 2Data mining assignment 2
Data mining assignment 2
 
Unit-2 Bayes Decision Theory.pptx
Unit-2 Bayes Decision Theory.pptxUnit-2 Bayes Decision Theory.pptx
Unit-2 Bayes Decision Theory.pptx
 
M03 nb-02
M03 nb-02M03 nb-02
M03 nb-02
 
Machine Learning
Machine LearningMachine Learning
Machine Learning
 
Probability distributions
Probability distributions  Probability distributions
Probability distributions
 
pattern recognition
pattern recognition pattern recognition
pattern recognition
 
Naive Bayes Presentation
Naive Bayes PresentationNaive Bayes Presentation
Naive Bayes Presentation
 
Equational axioms for probability calculus and modelling of Likelihood ratio ...
Equational axioms for probability calculus and modelling of Likelihood ratio ...Equational axioms for probability calculus and modelling of Likelihood ratio ...
Equational axioms for probability calculus and modelling of Likelihood ratio ...
 
Bayesian statistics
Bayesian statisticsBayesian statistics
Bayesian statistics
 
Ning_Mei.ASSIGN01
Ning_Mei.ASSIGN01Ning_Mei.ASSIGN01
Ning_Mei.ASSIGN01
 
PTSP PPT.pdf
PTSP PPT.pdfPTSP PPT.pdf
PTSP PPT.pdf
 

More from TejaspathiLV

Digital Marketing training in Pune
Digital Marketing training in PuneDigital Marketing training in Pune
Digital Marketing training in PuneTejaspathiLV
 
Online digital marketing course
Online digital marketing courseOnline digital marketing course
Online digital marketing courseTejaspathiLV
 
Digital marketing certification training in bangalore
Digital marketing certification training in bangaloreDigital marketing certification training in bangalore
Digital marketing certification training in bangaloreTejaspathiLV
 
Best online data science courses
Best online data science coursesBest online data science courses
Best online data science coursesTejaspathiLV
 
Best online data science courses
Best online data science coursesBest online data science courses
Best online data science coursesTejaspathiLV
 
Data science certification in bangalore
Data science certification in bangaloreData science certification in bangalore
Data science certification in bangaloreTejaspathiLV
 
Data science classroom training
Data science classroom trainingData science classroom training
Data science classroom trainingTejaspathiLV
 
"pmi acp certification "
"pmi acp certification ""pmi acp certification "
"pmi acp certification "TejaspathiLV
 
Data science course in kuwait
Data science course in kuwaitData science course in kuwait
Data science course in kuwaitTejaspathiLV
 
Itil foundation training
Itil foundation trainingItil foundation training
Itil foundation trainingTejaspathiLV
 
Pmi acp training in hyderabad
Pmi acp training in hyderabadPmi acp training in hyderabad
Pmi acp training in hyderabadTejaspathiLV
 
Pmp training in kolkata
Pmp training in kolkataPmp training in kolkata
Pmp training in kolkataTejaspathiLV
 
Pmp course in lucknow
Pmp course in lucknowPmp course in lucknow
Pmp course in lucknowTejaspathiLV
 
Pmp training in kolkata
Pmp training in kolkataPmp training in kolkata
Pmp training in kolkataTejaspathiLV
 
Analytics course in mumbai
Analytics course in mumbaiAnalytics course in mumbai
Analytics course in mumbaiTejaspathiLV
 
Data science course in mysore
Data science course in mysoreData science course in mysore
Data science course in mysoreTejaspathiLV
 
Machine learning certification in gurgaon
Machine learning certification in gurgaon Machine learning certification in gurgaon
Machine learning certification in gurgaon TejaspathiLV
 
Machine learning training in chennai
Machine learning training in chennaiMachine learning training in chennai
Machine learning training in chennaiTejaspathiLV
 
Iot course online training
Iot course online trainingIot course online training
Iot course online trainingTejaspathiLV
 

More from TejaspathiLV (20)

Digital Marketing training in Pune
Digital Marketing training in PuneDigital Marketing training in Pune
Digital Marketing training in Pune
 
Online digital marketing course
Online digital marketing courseOnline digital marketing course
Online digital marketing course
 
Digital marketing certification training in bangalore
Digital marketing certification training in bangaloreDigital marketing certification training in bangalore
Digital marketing certification training in bangalore
 
Best online data science courses
Best online data science coursesBest online data science courses
Best online data science courses
 
Best online data science courses
Best online data science coursesBest online data science courses
Best online data science courses
 
Data science certification in bangalore
Data science certification in bangaloreData science certification in bangalore
Data science certification in bangalore
 
Data science classroom training
Data science classroom trainingData science classroom training
Data science classroom training
 
Acp 2018
Acp  2018Acp  2018
Acp 2018
 
"pmi acp certification "
"pmi acp certification ""pmi acp certification "
"pmi acp certification "
 
Data science course in kuwait
Data science course in kuwaitData science course in kuwait
Data science course in kuwait
 
Itil foundation training
Itil foundation trainingItil foundation training
Itil foundation training
 
Pmi acp training in hyderabad
Pmi acp training in hyderabadPmi acp training in hyderabad
Pmi acp training in hyderabad
 
Pmp training in kolkata
Pmp training in kolkataPmp training in kolkata
Pmp training in kolkata
 
Pmp course in lucknow
Pmp course in lucknowPmp course in lucknow
Pmp course in lucknow
 
Pmp training in kolkata
Pmp training in kolkataPmp training in kolkata
Pmp training in kolkata
 
Analytics course in mumbai
Analytics course in mumbaiAnalytics course in mumbai
Analytics course in mumbai
 
Data science course in mysore
Data science course in mysoreData science course in mysore
Data science course in mysore
 
Machine learning certification in gurgaon
Machine learning certification in gurgaon Machine learning certification in gurgaon
Machine learning certification in gurgaon
 
Machine learning training in chennai
Machine learning training in chennaiMachine learning training in chennai
Machine learning training in chennai
 
Iot course online training
Iot course online trainingIot course online training
Iot course online training
 

Recently uploaded

Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin ClassesCeline George
 
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 . pdfQucHHunhnh
 
Food Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-II
Food Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-IIFood Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-II
Food Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-IIShubhangi Sonawane
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
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 ModeThiyagu K
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsMebane Rash
 
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.pdfAdmir Softic
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...Poonam Aher Patil
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Shubhangi Sonawane
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
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...christianmathematics
 
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 ...EduSkills OECD
 
Role Of Transgenic Animal In Target Validation-1.pptx
Role Of Transgenic Animal In Target Validation-1.pptxRole Of Transgenic Animal In Target Validation-1.pptx
Role Of Transgenic Animal In Target Validation-1.pptxNikitaBankoti2
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docxPoojaSen20
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 

Recently uploaded (20)

Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
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
 
Food Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-II
Food Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-IIFood Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-II
Food Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-II
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
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
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
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
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
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...
 
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 ...
 
Role Of Transgenic Animal In Target Validation-1.pptx
Role Of Transgenic Animal In Target Validation-1.pptxRole Of Transgenic Animal In Target Validation-1.pptx
Role Of Transgenic Animal In Target Validation-1.pptx
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 

Artificial intelligence training in bangalore

  • 3. 1-Nearest Neighbor Classifier Test Examples (What class to assign this?)
  • 9. Ingredient Sweetness Crunchiness Food type apple 10 9 fruit Bacon 1 4 protein banana 10 1 fruit carrot 7 10 vegetable celery 3 10 vegetable cheese 1 1 protein
  • 10.
  • 11.
  • 12.
  • 13. Measuring similarity with distance Locating the tomato's nearest neighbors requires a distance function, or a formula that measures the similarity between the two instances. There are many different ways to calculate distance. Traditionally, the k-NN algorithm uses Euclidean distance, which is the distance one would measure if it were possible to use a ruler to connect two points, illustrated in the previous figure by the dotted lines connecting the tomato to its neighbors.
  • 14. Euclidean distance Euclidean distance is specified by the following formula, where p and q are the examples to be compared, each having n features. The term p1 refers to the value of the first feature of example p, while q1 refers to the value of the first feature of example q:
  • 15. Application of KNN Which Class Tomoto belongs to given the feature values: Tomato (sweetness = 6, crunchiness = 4),
  • 16. K = 3, 5, 7, 9
  • 19. Understanding probability The probability of an event is estimated from the observed data by dividing the number of trials in which the event occurred by the total number of trials For instance, if it rained 3 out of 10 days with similar conditions as today, the probability of rain today can be estimated as 3 / 10 = 0.30 or 30 percent. Similarly, if 10 out of 50 prior email messages were spam, then the probability of any incoming message being spam can be estimated as 10 / 50 = 0.20 or 20 percent. Note: The probability of all the possible outcomes of a trial must always sum to 1 For example, given the value P(spam) = 0.20, we can calculate P(ham) = 1 – 0.20 = 0.80
  • 20. For example, given the value P(spam) = 0.20, we can calculate P(ham) = 1 – 0.20 = 0.80 Understanding probability cont.. Because an event cannot simultaneously happen and not happen, an event is always mutually exclusive and exhaustive with its complement The complement of event A is typically denoted Ac or A'. Additionally, the shorthand notation P(¬A) can used to denote the probability of event A not occurring, as in P(¬spam) = 0.80. This notation is equivalent to P(Ac).
  • 21. Understanding joint probability Often, we are interested in monitoring several nonmutually exclusive events for the same trial Spam 20% Lotter y 5% Ham 80% All emails
  • 22. Lottery without appearing in Spam Lottery appearing in Ham Lottery appearing in Spam Understanding joint probability Estimate the probability that both P(spam) and P(Spam) occur, which can be written as P(spam ∩ Lottery). the notation A ∩ B refers to the event in which both A and B occur.
  • 23. Calculating P(spam ∩ Lottery) depends on the joint probability of the two events or how the probability of one event is related to the probability of the other. If the two events are totally unrelated, they are called independent events If P(spam) and P(Lottery) were independent, we could easily calculate P(spam ∩ Lottery), the probability of both events happening at the same time. Because 20 percent of all the messages are spam, and 5 percent of all the e- mails contain the word Lottery, we could assume that 1 percent of all messages are spam with the term Lottery. More generally, for independent events A and B, the probability of both happening can be expressed as P(A ∩ B) = P(A) * P(B). 0.05 * 0.20 = 0.01
  • 24. Bayes Rule  Bayes Rule: The most important Equation in ML!! P Class Data( )= P Class( )P Data Class( ) P Data( ) Posterior Probability (Probability of class AFTER seeing the data) Class Prior Data Likelihood given Class Data Prior (Marginal)
  • 26. Conditional Independence  Simple Independence between two variables:  Class Conditional Independence assumption: P X1,X2( )= P X1( )P X2( ) P X1, X2( )¹ P X1( )P X2( ) P X1, X2 C( )= P X1 C( )P X2 C( ) P Fever, BodyAche( )¹ P Fever( )P BodyAche( ) P Fever, BodyAche Viral( )= P Fever Viral( )P BodyAche Viral( )
  • 27. Naïve Bayes Classifier Conditional Independence among variables given Classes!  Simplifying assumption  Baseline model especially when large number of features  Taking log and ignoring denominator: P C X1, X2,..., XD( )= P C( )P X1, X2,..., XD C( ) P X1, X2,..., XD C'( ) ¢C å = P C( ) P Xd C( ) d=1 D Õ P Xd ¢C( ) d=1 D Õ ¢C å log P C X1, X2,..., XD( )( )µlog P C( )( )+ log d=1 D å P Xd C( )( )
  • 28. Naïve Bayes Classifier for Categorical Valued Variables
  • 29. Let’s Naïve Bayes! #EXMPL S COLOR SHAPE LIK E 20 Red Square Y 10 Red Circle Y 10 Red Triangle N 10 Green Square N 5 Green Circle Y 5 Green Triangle N 10 Blue Square N 10 Blue Circle N 20 Blue Triangle Y log P C X1, X2,..., XD( )( )µlog P C( )( )+ log d=1 D å P Xd C( )( ) Class Prior Parameters: P Like = Y( )= ??? P Like = N( ) = ??? Class Conditional Likelihoods P Color = Red Like = Y( )= ???? P Color = Red Like = N( )= ???? ... P Shape = Triangle Like = N( )= ????
  • 30. Naïve Bayes Classifier for Text Classifier
  • 31. Text Classification Example  Doc1 = {buy two shirts get one shirt half off}  Doc2 = {get a free watch. send your contact details now}  Doc3 = {your flight to chennai is delayed by two hours}  Doc4 = {you have three tweets from @sachin} Four Class Problem:  Spam,  Promotions,  Social,  Main P promo doc1( )= 0.84 P spam doc2( )= 0.94 P main doc3( )= 0.75 P social doc4( )= 0.91
  • 32. Bag-of-Words Representation  Structured (e.g. Multivariate) data – fixed number of features  Unstructured (e.g. Text) data  arbitrary length documents,  high dimensional feature space (many words in vocabulary),  Sparse (small fraction of vocabulary words present in a doc.)  Bag-of-Words Representation:  Ignore Sequential order of words  Represent as a Weighted-Set – Term Frequency of each term
  • 33. Naïve Bayes Classifier with BoW  Make an “independence assumption” about words | class P doc1 promo( ) = P buy :1, two :1, shirt :2, get :1, one :1, half :1, off :1 promo( ) = P buy :1 promo( )P two :1 promo( )P shirt :2 promo( ) P get :1 promo( )P one :1 promo( )P free:1 promo( ) = P buy promo( ) 1 P two promo( ) 1 P shirt promo( ) 2 P get promo( ) 1 P one promo( ) 1 P free promo( ) 1
  • 34. Naïve Bayes Text Classifiers  Log Likelihood of document given class.  Parameters in Naïve Bayes Text classifiers: doc = tf wm( ){ }m=1 M tf wm( )= Number of times word wm occurs in doc P doc class( )= P w1 class( ) tf w1( ) P w2 class( ) tf w2( ) ...P wM class( ) tf wM( ) P wm c( )= Probability that word wm occurs in documents of class c P shirt promo( ),P free spam( ),P buy spam( ),P buy promo( ),... Number of parameters = ??
  • 35. doc1 doc2 ... docm doc1 doc2 doc3 ... ... docn  Likelihood of a word given class. For each word, each class.  Estimating these parameters from data: Naïve Bayes Parameters P wm c( )= Probability that word wm occurs in documents of class c N wm,c( )= Number of times word wm occurs in documents of class c N free, promo( )= tf free doc( ) docÎpromo å N free,spam( )= tf free doc( ) docÎspam å
  • 37. Bayes Rule P Class Data( )= P Class( )P Data Class( ) P Data( ) Posterior Probability (Probability of class AFTER seeing the data) Class Prior Data Likelihood given Class Data Prior (Marginal) P c x( )= P c( )P x c( ) P x( ) x ÎRD
  • 38. Simple Bayesian Classifier P c x( )= P c( )P x c( ) P x( ) Sum: P x c( )dx xÎRD ò = 1 Mean: xP x c( )dx xÎRD ò = mc Co-Variance: x - mc( ) x - mc( )T P x c( )dx xÎRD ò = Sc P x c( )= N x mc,Sc( )= 1 2p( ) D 2 Sc 1 2 exp - 1 2 x - mc( )T Sc -1 x - mc( )æ èç ö ø÷