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?
feedback
|
|
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. | |||||
feedback
|
|
Yes, DBpedia may be a good choice for this kind of problem. You'll have to
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. | |||||
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. | |||||
feedback
|
This approach is somehow related to KNN classification. | |||||||
feedback
|