Homework 2 Solution

$29.99 $18.99

Naive Bayes for Text Classification In this question, you will implement and evaluate Naive Bayes for text classi – cation. 0 Points Download the spam/ham (ham is not spam) dataset available on my-Courses. The data set is divided into two sets: training set and test set. The dataset was used in the Metsis et al.…

You’ll get a: . zip file solution

 

 
Categorys:
Tags:

Description

Rate this product
  • Naive Bayes for Text Classification

In this question, you will implement and evaluate Naive Bayes for text classi – cation.

0 Points Download the spam/ham (ham is not spam) dataset available on my-Courses. The data set is divided into two sets: training set and test set. The dataset was used in the Metsis et al. paper [1]. Each set has two di-rectories: spam and ham. All les in the spam folders are spam messages and all les in the ham folder are legitimate (non spam) messages.

40 points Implement the multinomial Naive Bayes algorithm for text classi cation described here: http://nlp.stanford.edu/IR-book/pdf/13bayes.pdf (see Figure 13.2). Note that the algorithm uses add-one laplace smooth-ing. Ignore punctuation and special characters and normalize words by converting them to lower case, converting plural words to singular (i.e., \Here” and \here” are the same word, \pens” and \pen” are the same word). Normalize words by stemming them using an online stemmer such as http://www.nltk.org/howto/stem.html. Make sure that you do all the calculations in log-scale to avoid under ow. Use your algorithm to learn from the training set and report accuracy on the test set.

  1. points Improve your Naive Bayes by throwing away (i.e., ltering out) stop words such as \the” \of” and \for” from all the documents. A list of stop words can be found here: http://www.ranks.nl/stopwords. Report accuracy for Naive Bayes for this ltered set. Does the accuracy improve? Explain why the accuracy improves or why it does not?

  • Point Estimation

20 points Derive maximum likelihood estimators for

  1. parameter p, Bernoulli(p) sample of size n.

  1. parameter p based on a Binomial(N, p) sample of size n. Compute your estimators if the observed sample is (3, 6, 2, 0, 0, 3) and N = 10.

  1. parameters a and b based on a Uniform (a, b) sample of size n.

  1. parameter based on a Normal( , 2) sample of size n with known variance 2 and unknown mean .

  1. parameter based on a Normal( , 2) sample of size n with known mean and unknown variance 2.

  1. parameters ( , 2) based on a Normal( , 2) sample of size n with unknown mean and variance 2.

30 points You are given a coin and a thumbtack and you perform the following experiment: toss both the thumbtack and the coin 100 times. You get 60 heads and 40 tails for the coin, 70 heads and 30 tails for the thumbtack. You put Beta priors Beta(1,1), Beta(40, 60), Beta(30, 70), Beta(100, 100), Beta(1000, 1000), and Beta(100,000, 100,000) on the coin and thumbtack, respectively. (For both the coin toss and thumbtack toss experiments, you put these three priors, respectively.)

  1. Derive the MLE and MAP estimates for the coin and the thumbtack.

  1. With the help of gures identify how the di erent priors a ect the estimated parameter values. Follow the point estimation example in the lectures and illustrate in a similar manner in your answer. For

full credit, a curve for each scenario should be shown along with an explanation of the curve in terms of the di erent values in the ques-tion (number of heads and tails recorded and parameters of the Beta prior). Record changes in the curve for the di erent combinations and include intuitive explanations for the changes.

  1. True or False: As you have collect more data instances by tossing the coin/thumbtack, the MLE estimate will approach the MAP estimate. Explain. [Answers without explanation will receive no credit.]

  1. True or False: The MLE of the coin and the thumbtack are di er-ent but their MAP estimates approach the same value when we use a larger prior (think Beta(100,000, 100,000) and larger). Explain. [Answers without explanation will receive no credit.]

What to Turn in

Your code

README le for compiling and executing your code. A detailed write up that contains:

    1. The accuracy on the test set.

    1. Detailed answers to point estimation questions showing the complete derivation (can be hand-written and scanned). No points will be given for answers that are incomplete.

References

  1. V. Metsis, I. Androutsopoulos and G. Paliouras, \Spam Filtering with Naive Bayes – Which Naive Bayes?”. Proceedings of the 3rd Conference on Email and Anti-Spam (CEAS 2006), Mountain View, CA, USA, 2006.

3