I've to implement text classification for a long list of words. I've some categories defined e.g. If the word "UK" is in the list, it will come under "Regions". If the word is "Pizza", it will come under category "food".

How can I classify the words under different categories? Is there any open source tool available to do that?

link|improve this question

64% accept rate
Are you trying to classify the words in the lists for which you already have some categories defined, or documents containing a subset of the words? I'm not sure what you're trying to do here. – Joel Jan 30 '11 at 19:10
The categories are fixed, but there can be any number of related/unrelated words in the words list. – wasimbhalli Jan 30 '11 at 19:10
I'm trying to classify words, after some pre-processing, i'll have a list of words. So I have to categories the words, not documents – wasimbhalli Jan 30 '11 at 19:11
But the words are already mapped to categories? – Joel Jan 30 '11 at 19:12
I've some categories defined. Now, for each specific word, I've to check that if the word is related to any category, if it is more or less related to that category, i'll put it in that categories bucket, otherwise i'll ignore it – wasimbhalli Jan 30 '11 at 19:14
show 7 more comments
feedback

1 Answer

up vote 2 down vote accepted

I'm not entirely sure what you're trying to do, but if what you want is to build up a list representative words for a number of categories then you could do this by selecting the top N most frequent words, excluding stop words, from a set of documents representative of each category. This is an easy way of creating a very basic ontology.

For example, to create a set of words about food you could crawl the web for recipies and menus and then select the most frequent words from these. I'd expect that once you have excluded stop words you'll have a good list of food related words. For words related to programming you could crawl stackoverflow.com, etc etc...

Then again, this may not be what you're trying to do...

link|improve this answer
Yes, that's exactly what I want to achieve. You have provided a very good way of doing that. Just a single point? Can similarity measure help us in this regard i.e. how much two words related to each other? – wasimbhalli Jan 30 '11 at 19:45
Thanks for your help :) – wasimbhalli Jan 30 '11 at 19:46
re: similarity - in theory yes, but in practice it's tricky and it's just much easier to generate word coverage by having large enough document sets for each class that you want to classify. You'd hope that by doing this you'll capture each and every common word in use relating to the category. Once you try it you'll see that the most frequent words are pretty representative. – Joel Jan 30 '11 at 19:54
feedback

Your Answer

 
or
required, but never shown

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