Perceptron
Sigmoid Function
Hold out method
- do this k times
k fold cross validation
leave one out method
Performance Measure
Accuracy = (tp+tn) /(p+n)
Precision (P)
(+) = tp / pp
(-) = tn / pn
Recall (R)
(+) = tp / p
(-) = tn / n
F measure = 2PR / (P+R)
TPR = tp / p
FPR = fp / n
ROC
AUC = h(a + b)/2 tp - true positive tn - true negative p - positive in dataset n - negative in dataset pp - predicted positive pn - predicted negative
Probabilistic Classifier
NB, Logistic Regression, Sigmoid
Discrete Classifier
Perceptron
KNN
NB
Decision tree