Question: Q 1 . Naive Bayes: Code [ 2 5 ] In this question, you will learn to build a Naive Bayes Classifier for the binary

Q1. Naive Bayes: Code [25]
In this question, you will learn to build a Naive Bayes Classifier for the binary classification
task.
Dataset: "Financial Phrasebank" dataset from HuggingFace. ?1 To load the data, you
need to install library "datasets" (pip install datasets) and then use load_datset ()
method to load the dataset. You can find the code on the link provided above.
The dataset contains 3 class labels, neutral (1), positive (2), and negative (0). Consider
only positive and negative samples and ignore the neutral samples. Use 80% of the
samples selected randomly to train the model and the remaining 20% for the test.
Clean the dataset with the steps from the previous assignment and build a vocabulary of
all the words.
Compute the prior probability of each class
p(ci)=count(ci)N
Here, count(ci) is the number of samples with class ci and N is the total number of
samples in the dataset.
Compute the likelihood p(wi|c) for a all words wi and all classes c with following equation:
p(wi|c)=count(wi,c)+1|V|+wV?count(w,c)
Here, the count(wi,c) is the frequency of the word wi in class c while wV?count(w,c) is
the frequency of all the words in the class c. Laplace smoothing is used to avoid zero
probability in the case of a new word.
For each sample in the test set, predict class cNB which is the class with the highest
posterior probability. To avoid underflow and increase speed, use log space to predict
the class as follows:
cNB=argmaxcC(logp(c)+wiV?logp(wi|c))
Using the metrics from scikit-learn library ?2, calculate the accuracy and macro-average
precision, recall, and F1 score, and also provide the confusion matrix on the test set.
 Q1. Naive Bayes: Code [25] In this question, you will learn

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!