Group work for a Monash Research Methods course

Naive Bayes description

+11 -1
+11 -1
mini_proj/report/waldo.tex
··· 118 118 119 119 \paragraph{Naive Bayes Classifier} 120 120 121 - \cite{naivebayes} 121 + \cite{naivebayes} is a classification method according to Bayes' theorem, 122 + shown in \Cref{eq:bayes}. Bayes' theorem allows us to calculate the 123 + probability of an event taking into account prior knowledge of conditions of 124 + the event in question. In classification this allows us to calculate the 125 + probability that a new instance has a certain class based its features. We 126 + then assign the class that has the highest probability. 127 + 128 + \begin{equation} 129 + \label{eq:bayes} 130 + P(A\mid B)=\frac {P(B\mid A)\,P(A)}{P(B)} 131 + \end{equation} 122 132 123 133 \paragraph{$k$-Nearest Neighbors} 124 134