Im sry I posted a similar question yesterday but for some reason I can't comment on it and I need some answers. I need to implement the perceptron algorithm to classify documents into categories. I have a number of documents that I personally grouped(example news, sports etc). For all of the categories I have a list of words which are most frequently used (as a feature to feed the perceptron). As a guidline I was given this information:
Initialize: w1 = 0
Updating rule: For each data point x
If class(x) != decision(X,W)
then
Wk+1 <- Wk + YiXi
k <- k + 1
else Wk+1 <- Wk
where the function decision is:
decision(x, w)
If wx + b > 0
return +1
else return -1
any ideas how to build and use this classifier to classify my documents? Thanks a lot