Naive Bayes Classifier Presentaion.pptx

SMRRehan 8 views 10 slides Jul 29, 2024
Slide 1
Slide 1 of 10
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6
Slide 7
7
Slide 8
8
Slide 9
9
Slide 10
10

About This Presentation

A group of classification algorithms built using the Bayes Theorem are known as Naive Bayes classifiers. It is a family of algorithms rather than a single method...


Slide Content

Presentation By Syed Mohamamed Rehan Manoj Kumar C S Sam Sagaya Raj Sanju K N Naive Bayes Classifier

Contents Introduction Conditional Probability Bayes theorem Objective Uses

A group of classification algorithms built using the Bayes Theorem are known as Naive Bayes classifiers. It is a family of algorithms rather than a single method A mathematical procedure called Bayes can be used to calculate conditional probability. The probability of a result happening based on the possibilities that has a comparable outcome which has already happened in the past is known as conditional probability. Introduction

The Bayes theorem offers a procedure to update probabilities for the current predictions or theories given new or additional evidence. I t can be used for large data sets Naive Bayes extremely fast relative to other classification algorithms. Introduction

Conditional p robability formula : P(B|A) = P(A and B) / P(A) OR P(B|A) = P(A∩B) / P(A) Where, P = Probability A = Event A B = Event B Conditional Probability

P(A | B) = (P( B | A )P(A ))/P( B) where A and B are events. P (A|B) is called the posterior probabilities . P (B| A) is called the likelihood probabilities. P(A) is known as the Marginal probabilities. P (B) is known as the prior probabilities. Bayes Theorem

Objectives The proposed approach is a supervised approach. Here we are finding the Iris flower species based on flower attribute measurements. Four features were measured from each sample are as follows:  Sepal length  Sepal width  Petal length Petal width Species of Iris: Iris Setosa Iris Versicolor Iris Virginica Iris Setosa Iris Versicolor Iris Virginica

Document classification. This algorithm can help you to determine to which category a given document belongs. It can be used to classify texts into different languages, genres, or topics (through the presence of keywords). Spam filtering. Naive Bayes easily sorts out spam using keywords. For example, in spam, you can see the word ‘100% free’ much more often than in regular mail. The algorithm must be trained to recognize such probabilities and, then, it can efficiently apply them for spam filtering. Uses

Sentiment analysis. Based on what emotions the words in a text express, Naive Bayes can calculate the probability of it being positive or negative. For example, in customer reviews, ‘good’ or ‘inexpensive’ usually mean that the customer is satisfied. However, Naive Bayes is not sensitive to sarcasm. Uses

Thank You