vote up 0 vote down star

I am creating a blogging functionality to my website running on a cms.

My requirement is this:

When a person has written an article, he must automatically provided with 'suggested tags'. These words must come from the article. How can I implement this functionality?

I thought some ideas. Like:

  1. Suggest words which are the longest. Using this, I can filter out 'a', 'of', 'my' etc but not 'because'.
  2. Create a blacklist of words. But I couldn't find any such ready-made list and creating such a list will take a very long time.

So, any other ideas?

flag

75% accept rate

1 Answer

vote up 0 vote down check

You could do Bayesian classification and see what happens. Here's some example code.

UPDATE: This presupposes that you have some tags for the classifier to choose from. Here is a simple algorithm for extracting keywords from text if you need to initialize your list of tags.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.