I need to categorize a text or a word to a particular category. For Example, the text 'pink floyd' should be categorized as 'music' or 'wikimedia' as 'technology' or 'einstein' as 'science'. How can this be done? Is there a way i can use the dbpedia for the same? if not the dbpedia, the database has to be trained from time to time, right?

link|improve this question

Machine learning is only really going to help you here if the terms are used in context otherwise it's a basic dictionary lookup task with maybe some fuzzy guessing to match misspellings and "einstein" vs "Albert Einstein" issues. Where are you getting your terms that you need to categorize? Reading text or just a big list of terms? – Thien Jun 11 '11 at 21:49
Reading text, Thien. I'll just extract probably nouns and adjectives from sentences and categorize the text based on these terms. – madCode Jun 17 '11 at 6:21
feedback

4 Answers

up vote 1 down vote accepted

This is a text classification problem. Manning, Raghavan and Schütze's Information Retrieval book chapter is a nice introduction. I think you do not need DBPedia nor NER for this, just a small labeled training data set with enough labeled examples for all of your classes.

link|improve this answer
is there any tutorial that I can follow to apply this model ? – user1234770 Apr 19 at 6:22
Try week 3 of the Stanford online NLP course: class.coursera.org/nlp/lecture/preview – Yuval F Apr 19 at 8:24
feedback

Yes, DBpedia may be a good choice for this kind of problem. You'll have to

  1. squash the DBpedia category structure so you get the right granularity (e.g., Pink Floyd is listed under Capitol Records artists and a host of other categories, but not directly under Music). Maybe pick a few large categories and try to find whether your concepts are listed indirectly in them;
  2. normalize text; Einstein is listed as Albert Einstein, not einstein
  3. deal with ambiguity due to terms describing multiple concepts and concepts belonging to multiple top-level categories.

These problems may be solvable using machine learning, but I only see how it can be done if you extract these terms, along with relevant features, from running text. But in that case, you might just as well classify the entire text into one of the categories you choose in step 1.

link|improve this answer
thanks for your reply. but how do i go about..categorizing the dbpedia structure? like you said, it's not under categories that i would prefer. I guess it works fine if i want to query random data. – madCode May 9 '11 at 17:48
@Madhura: DBpedia has categories Music and Science near the top of its hierarchy. You'll have to use some graph algorithms to find them. – larsmans May 9 '11 at 18:14
feedback

This is the well-studied named entity recognition problem. Unless you have a particular need to roll your own technology (hint: it's a hard problem in general), using Gate, or perhaps one of the online services that builds on it (e.g. TSO's Data Enrichment Service), would be a good option. An alternative online service is OpenCalais.

link|improve this answer
1  
Actually, named-entity recognition/classification is the task of doing this in running text and is generally done with much broader categories. – larsmans May 3 '11 at 10:23
feedback
  1. Mapping your categries to DBPedia.
  2. Index with lucene selected DBPedia categories and label data with your category names.
  3. Do search for your data - tokenization, normalization will be done by Lucene.

This approach is somehow related to KNN classification.

link|improve this answer
Are you saying index all the categories by building a Lucene Document out of the subcategories and article titles in each? If so, that would be a bit similar to kNN, yes. I did something somewhat similar for my thesis research, although on different data, and it did work. – larsmans May 4 '11 at 6:02
Yes, you understand it correctly. I was using to creating semantic space of Wikipedia categories, it was very useful. – yura May 17 '11 at 8:59
Alright, +1 after this clarification. – larsmans May 17 '11 at 10:15
feedback

Your Answer

 
or
required, but never shown

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