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

link|improve this question
1  
There are at least two questions here: 1) how do I implement a (presumably multi-layer) perceptron (ok, let's say "neural network with backpropagation learning") in Python, and 2) should I do this to classify text? – Derrick Turk Jan 12 '11 at 16:58
1  
Why does this sound like a class problem? – milkypostman Jan 12 '11 at 17:04
4  
If only you had a class to go to that taught you how to do the problems. – Aphex Jan 12 '11 at 17:16
4  
@rbc089, people don't mind helping, but they aren't here to do your homework for you. Your question doesn't have anything in it that shows that you made any effort yourself. For instance, you could show us some code that you've started on or what you're thinking of doing. At present, this question is rather close to a 'show me the codes' question. In addition, I'm pretty sure that there are some inaccuracies in the spec that you've put up because some parts don't fully make sense. I could guess what is meant, but it is unclear to me. – Justin Peel Jan 12 '11 at 18:40
1  
There's nothing left to do here after yesterday's question -- it's just a Small Matter of Coding (TM). – Ken Bloom Jan 12 '11 at 18:46
show 9 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.